Commit 4cf51818 authored by Jérome Perrin's avatar Jérome Perrin

full_schema: no need to repeat id & name. Short id should be another property

parent f42fd515
...@@ -406,20 +406,8 @@ ...@@ -406,20 +406,8 @@
"shape" : "rectangle", "shape" : "rectangle",
"description" : "A station where entities exits from the system", "description" : "A station where entities exits from the system",
"allOf" : [{ "allOf" : [{
"$ref" : "#/node" "$ref" : "#/node"
}, { }
"type" : "object",
"properties" : {
"name" : {
"type" : "string",
"default" : "Exit"
},
"id" : {
"default" : "E",
"required" : true
}
}
}
] ]
}, },
"Dream.Queue" : { "Dream.Queue" : {
...@@ -431,14 +419,6 @@ ...@@ -431,14 +419,6 @@
}, { }, {
"type" : "object", "type" : "object",
"properties" : { "properties" : {
"name" : {
"type" : "string",
"default" : "Queue"
},
"id" : {
"type" : "string",
"default" : "Q"
},
"capacity" : { "capacity" : {
"$ref" : "#/definitions/_capacity", "$ref" : "#/definitions/_capacity",
"required" : true "required" : true
...@@ -464,15 +444,6 @@ ...@@ -464,15 +444,6 @@
}, { }, {
"type" : "object", "type" : "object",
"properties" : { "properties" : {
"name" : {
"type" : "string",
"default" : "Machine"
},
"id" : {
"type" : "string",
"default" : "M",
"required" : true
},
"processingTime" : { "processingTime" : {
"$ref" : "#/definitions/_dist", "$ref" : "#/definitions/_dist",
"required" : true "required" : true
...@@ -494,15 +465,6 @@ ...@@ -494,15 +465,6 @@
}, { }, {
"type" : "object", "type" : "object",
"properties" : { "properties" : {
"name" : {
"type" : "string",
"default" : "Source"
},
"id" : {
"type" : "string",
"default" : "S",
"required" : true
},
"interArrivalTime" : { "interArrivalTime" : {
"description" : "Inter-arrivaltime", "description" : "Inter-arrivaltime",
"$ref" : "#/definitions/_dist", "$ref" : "#/definitions/_dist",
...@@ -527,15 +489,6 @@ ...@@ -527,15 +489,6 @@
}, { }, {
"type" : "object", "type" : "object",
"properties" : { "properties" : {
"name" : {
"type" : "string",
"default" : "Attainment"
},
"id" : {
"type" : "string",
"default" : "A",
"required" : true
},
"start" : { "start" : {
"description" : "Starttime", "description" : "Starttime",
"type" : "number", "type" : "number",
...@@ -585,15 +538,6 @@ ...@@ -585,15 +538,6 @@
}, { }, {
"type" : "object", "type" : "object",
"properties" : { "properties" : {
"name" : {
"type" : "string",
"default" : "Repairman"
},
"id" : {
"type" : "string",
"default" : "R",
"required" : true
},
"capacity" : { "capacity" : {
"$ref" : "#/definitions/_capacity", "$ref" : "#/definitions/_capacity",
"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