current versions of app_configurations updated, minor corrections

parent 2fed3911
...@@ -499,7 +499,8 @@ ...@@ -499,7 +499,8 @@
}, },
"batchNumberOfUnits": { "batchNumberOfUnits": {
"description": "the number of units of the created batches", "description": "the number of units of the created batches",
"name": "Number Of Units", "name": "Number Of Units",
"type": "number",
"required": true "required": true
}, },
"name": { "name": {
...@@ -776,6 +777,7 @@ ...@@ -776,6 +777,7 @@
"definitions": { "definitions": {
"_capacity": { "_capacity": {
"default": 1, "default": 1,
"name": "Capacity",
"description": "capacity of the queue. -1 means infinite", "description": "capacity of the queue. -1 means infinite",
"oneOf": [ "oneOf": [
{ {
...@@ -874,24 +876,19 @@ ...@@ -874,24 +876,19 @@
} }
] ]
}, },
"_operationType": { "_operationType": {
"_class": "Dream.PropertyList",
"description": "the type of operations that are performed manually in the machine", "description": "the type of operations that are performed manually in the machine",
"id": "operationType",
"name": "Operation type", "name": "Operation type",
"properties": { "enum": [
"operationType": { "MT-Load",
"enum": [ "MT-Load-Setup",
"MT-Load", "MT-Load-Setup-Processing"
"MT-Load-Setup", ],
"MT-Load-Setup-Processing" "type": "string"
],
"type": "string"
}
}
}, },
"_schedulingRule": { "_schedulingRule": {
"default": "FIFO", "default": "FIFO",
"name": "Scheduling Rule",
"description": "Scheduling Rule of this buffer", "description": "Scheduling Rule of this buffer",
"enum": [ "enum": [
"FIFO", "FIFO",
......
...@@ -382,20 +382,21 @@ ...@@ -382,20 +382,21 @@
"type": "string" "type": "string"
}, },
"operationType": { "operationType": {
"description": "Type Of Operation",
"name": "Operation Type",
"properties": { "properties": {
"load": { "load": {
"$ref": "#/definitions/_operationType", "$ref": "#/definitions/_operationType",
"description": "Operation type for loading" "description": "Operation type for loading",
"name": "Load Operation type"
}, },
"processing": { "processing": {
"$ref": "#/definitions/_operationType", "$ref": "#/definitions/_operationType",
"description": "Operation type for processing" "description": "Operation type for processing",
"name": "Processing Operation type"
}, },
"setup": { "setup": {
"$ref": "#/definitions/_operationType", "$ref": "#/definitions/_operationType",
"description": "Operation type for setup" "description": "Operation type for setup",
"name": "Setup Operation type"
} }
}, },
"required": [ "required": [
...@@ -537,6 +538,7 @@ ...@@ -537,6 +538,7 @@
"definitions": { "definitions": {
"_capacity": { "_capacity": {
"default": 1, "default": 1,
"name": "Capacity",
"description": "capacity of the queue. -1 means infinite", "description": "capacity of the queue. -1 means infinite",
"oneOf": [ "oneOf": [
{ {
...@@ -646,6 +648,7 @@ ...@@ -646,6 +648,7 @@
}, },
"_schedulingRule": { "_schedulingRule": {
"default": "FIFO", "default": "FIFO",
"name": "Scheduling Rule",
"description": "Scheduling Rule, one of FIFO Priority EDD EOD NumStages RPC LPT SPT MS WINQ", "description": "Scheduling Rule, one of FIFO Priority EDD EOD NumStages RPC LPT SPT MS WINQ",
"enum": [ "enum": [
"FIFO", "FIFO",
......
...@@ -264,6 +264,7 @@ ...@@ -264,6 +264,7 @@
] ]
}, },
"_schedulingRule" : { "_schedulingRule" : {
"name": "Scheduling Rule",
"description" : "Scheduling Rule, one of FIFO Priority EDD EOD NumStages RPC LPT SPT MS WINQ", "description" : "Scheduling Rule, one of FIFO Priority EDD EOD NumStages RPC LPT SPT MS WINQ",
"type" : "string", "type" : "string",
"default" : "FIFO", "default" : "FIFO",
...@@ -282,6 +283,7 @@ ...@@ -282,6 +283,7 @@
] ]
}, },
"_capacity" : { "_capacity" : {
"name": "Capacity",
"description" : "capacity of the queue. -1 means infinite", "description" : "capacity of the queue. -1 means infinite",
"type" : "number", "type" : "number",
"default" : 1, "default" : 1,
...@@ -295,21 +297,15 @@ ...@@ -295,21 +297,15 @@
] ]
}, },
"_operationType" : { "_operationType" : {
"_class" : "Dream.PropertyList", "name" : "Operation type",
"name" : "Operation type", "description" : "the type of operations that are performed manually in the machine",
"id" : "operationType", "type" : "string",
"description" : "the type of operations that are performed manually in the machine", "enum" : [
"properties" : { "MT-Load",
"operationType" : { "MT-Load-Setup",
"type" : "string", "MT-Load-Setup-Processing"
"enum" : [ ]
"MT-Load", }
"MT-Load-Setup",
"MT-Load-Setup-Processing"
]
}
}
}
}, },
"edge" : { "edge" : {
"description" : "Base definition for edge", "description" : "Base definition for edge",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment