Fixed Json Schema

The schema incorrectly listed the array of children in LinkData as an
Array of numbers, not an array of objects with properties.
This commit is contained in:
StevenRS11
2014-06-25 16:17:26 -04:00
parent 0f3d40ba60
commit 96d84ed2fa
4 changed files with 61 additions and 7 deletions

View File

@@ -64,10 +64,26 @@
"type": "object",
"properties": {
"children": {
"type": "array",
"type":"array",
"items":{
"type": "number"
}
"type": "object",
"properties":{
"x": {
"type": "integer"
},
"y": {
"type": "integer"
},
"z": {
"type": "integer"
}
},
"required": [
"x",
"y",
"z"
]
}
},
"orientation": {
"type": "number"

View File

@@ -64,10 +64,26 @@
"type": "object",
"properties": {
"children": {
"type": "array",
"type":"array",
"items":{
"type": "number"
}
"type": "object",
"properties":{
"x": {
"type": "integer"
},
"y": {
"type": "integer"
},
"z": {
"type": "integer"
}
},
"required": [
"x",
"y",
"z"
]
}
},
"orientation": {
"type": "number"