Commit 9b8ccedf authored by Jérome Perrin's avatar Jérome Perrin

example format: use proper ref syntax

parent be984cfa
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
"_class": "edge", "_class": "edge",
"allOf": [ "allOf": [
{ {
"$ref": "#edge" "$ref": "#/edge"
} }
], ],
"description": "Connect stations together" "description": "Connect stations together"
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
"description": "A station where entities exits from the system", "description": "A station where entities exits from the system",
"allOf": [ "allOf": [
{ {
"$ref": "#node" "$ref": "#/node"
} }
] ]
}, },
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
"description": "A buffer where entites can be hold until the next station is ready to process them", "description": "A buffer where entites can be hold until the next station is ready to process them",
"allOf": [ "allOf": [
{ {
"$ref": "#node" "$ref": "#/node"
}, },
{ {
"type": "object", "type": "object",
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
"_class": "node", "_class": "node",
"allOf": [ "allOf": [
{ {
"$ref": "#node" "$ref": "#/node"
}, },
{ {
"properties": { "properties": {
...@@ -199,7 +199,7 @@ ...@@ -199,7 +199,7 @@
"description": "A station creating entities", "description": "A station creating entities",
"allOf": [ "allOf": [
{ {
"$ref": "#node" "$ref": "#/node"
}, },
{ {
"interArrivalTime": { "interArrivalTime": {
......
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