operationType defined in different way now

parent bad574ba
...@@ -854,6 +854,7 @@ ...@@ -854,6 +854,7 @@
} }
}, },
"preprocessing" : { "preprocessing" : {
"description" : " ",
"plugin_list" : [{ "plugin_list" : [{
"plugin" : "GatherWIPStat.GatherWIPStat", "plugin" : "GatherWIPStat.GatherWIPStat",
"input_id" : "WIPStat" "input_id" : "WIPStat"
...@@ -874,6 +875,7 @@ ...@@ -874,6 +875,7 @@
] ]
}, },
"processing" : { "processing" : {
"description" : " ",
"plugin_list" : [{ "plugin_list" : [{
"plugin" : "plugin.DefaultExecutionPlugin", "plugin" : "plugin.DefaultExecutionPlugin",
"input_id" : "Simulation" "input_id" : "Simulation"
...@@ -881,6 +883,7 @@ ...@@ -881,6 +883,7 @@
] ]
}, },
"postprocessing" : { "postprocessing" : {
"description" : " ",
"plugin_list" : [ "plugin_list" : [
] ]
}, },
......
...@@ -295,24 +295,13 @@ ...@@ -295,24 +295,13 @@
] ]
}, },
"_operationType" : { "_operationType" : {
"_class" : "Dream.PropertyList",
"name" : "Operation type",
"id" : "operationType",
"description" : "the type of operations that are performed manually in the machine", "description" : "the type of operations that are performed manually in the machine",
"properties" : { "default" : "Automatic",
"operationType" : { "type" : "string",
"type" : "string", "enum" : [
"enum" : [ "Automatic",
"Load", "Manual"
"Setup", ]
"Processing",
"MT-Load",
"MT-Load-Setup",
"MT-Load-Setup-Processing",
"MT-Setup-Processing"
]
}
}
} }
}, },
"edge" : { "edge" : {
...@@ -453,6 +442,26 @@ ...@@ -453,6 +442,26 @@
"default" : "M", "default" : "M",
"required" : true "required" : true
}, },
"loadType" : {
"$ref" : "#/definitions/_operationType",
"required" : true
},
"setupType" : {
"$ref" : "#/definitions/_operationType",
"required" : true
},
"processingType" : {
"$ref" : "#/definitions/_operationType",
"required" : true
},
"loadTime" : {
"$ref" : "#/definitions/_dist",
"required" : true
},
"setupTime" : {
"$ref" : "#/definitions/_dist",
"required" : true
},
"processingTime" : { "processingTime" : {
"$ref" : "#/definitions/_dist", "$ref" : "#/definitions/_dist",
"required" : true "required" : true
......
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