forked from gopro/forgejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.json
70 lines (56 loc) · 1.32 KB
/
root.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"id": "root",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "MainConfig",
"description": "The root of the project json configuration",
"type": "object",
"properties": {
"viewer": {
"$ref": "viewer"
},
"history": {
"$ref": "history"
},
"i18n": {
"$ref": "i18n"
},
"view": {
"$ref": "view"
},
"camera": {
"$ref": "camera"
},
"controllers": {
"$ref": "controller"
},
"audio": {
"$ref": "audio"
},
"playlists": {
"$ref": "playlist"
},
"postProcessing": {
"$ref": "postprocessing"
},
"story": {
"$ref": "story"
},
"director": {
"$ref": "director"
},
"hotspots": {
"$ref": "hotspot-anim"
},
"actions": {
"type": "array",
"title": "Actions",
"description": "The list of available actions in the project. Each member is an instance of <a href=\"#action\">an action.</a>",
"items": {
"$ref": "action"
}
},
"plugins": {
"$ref": "plugin"
}
}
}