summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/app/schema/scene.json
blob: 412ce90a0121b7e6319404467a0c86347f7f345e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
	"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
}