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:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user