dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
31 lines (30 loc) • 555 B
JSON
{
"description":"An application's scene instance declarations",
"type": "object",
"properties":{
"type": {
"type": "string",
"description": "Scene Instance Type (Class)"
},
"models": {
"type": "array",
"items": {"$ref": "/jdoe/test/schema/model"}
},
"views": {
"type": "array",
"items": {
"type": "object",
"properties" : {
"id": {
"type": "string"
},
"view": {"$ref": "/jdoe/test/schema/view"},
"params": {
"type": "object"
}
}
}
}
},
"additionalProperties": true
}