This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScreenMeta.json
107 lines (106 loc) · 2.98 KB
/
ScreenMeta.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ViewNavigationGroup": {
"description": "Description of groups in the navigation menu.\n\nUsed to create nesting levels of menu items.",
"properties": {
"child": {
"items": {
"anyOf": [
{
"$ref": "#/definitions/ViewNavigationItem"
},
{
"$ref": "#/definitions/ViewNavigationGroup"
}
]
},
"type": "array"
},
"defaultView": {
"type": "string"
},
"hidden": {
"type": "boolean"
},
"id": {
"description": "TODO identifier will be nullable and string-only in 2.0.0",
"type": [
"string",
"number"
]
},
"title": {
"type": "string"
}
},
"required": [
"child",
"title"
],
"type": "object"
},
"ViewNavigationItem": {
"description": "Description of the destination in the navigation menu.",
"properties": {
"hidden": {
"type": "boolean"
},
"id": {
"description": "TODO: remove in 2.0.0",
"type": "string"
},
"viewName": {
"type": "string"
}
},
"type": "object"
}
},
"properties": {
"name": {
"type": "string"
},
"navigation": {
"properties": {
"menu": {
"items": {
"anyOf": [
{
"$ref": "#/definitions/ViewNavigationItem"
},
{
"$ref": "#/definitions/ViewNavigationGroup"
}
]
},
"type": "array"
}
},
"required": [
"menu"
],
"type": "object"
},
"primaryViewName": {
"type": "string"
},
"primaryViews": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"name",
"navigation",
"primaryViewName",
"primaryViews",
"title"
],
"type": "object"
}