-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscene-definition-schema.json
24 lines (24 loc) · 1.2 KB
/
scene-definition-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://chezsoi.org/lucas/shared-img-reveal/scene-definition-schema.json",
"type": "object",
"properties": {
"name": {"type": "string"},
"img": {"type": "object", "properties": {
"url": {"type": "string"},
"width": {"type": "number"},
"height": {"type": "number"}
}, "required": ["url", "width", "height"], "additionalProperties": false},
"clips": {"type": "array", "items": {"type": "object", "properties": {
"type": {"type": "string"}
}, "required": ["type"], "patternProperties": {
"[a-z-]+": {"anyOf": [{"type": "string", "pattern": "[a-zA-Z0-9 -]+"}, {"type": "number"}]}
}, "additionalProperties": false}},
"add": {"type": "array", "items": {"type": "object", "properties": {
"type": {"type": "string"}
}, "required": ["type"], "patternProperties": {
"[a-z-]+": {"anyOf": [{"type": "string", "pattern": "[a-zA-Z0-9 -]+"}, {"type": "number"}]}
}, "additionalProperties": false}},
"duration_in_min": {"type": "number"}
}, "required": ["name", "img"], "additionalProperties": false
}