nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
30
{
    "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
}