You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
555 B
30 lines
555 B
{ |
|
"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 |
|
}
|
|
|