-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.schema.json
More file actions
47 lines (47 loc) · 1021 Bytes
/
theme.schema.json
File metadata and controls
47 lines (47 loc) · 1021 Bytes
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://editor.sablierapp.dev/theme.schema.json",
"title": "Theme Input Data",
"description": "Theme input data schema",
"type": "object",
"properties": {
"DisplayName": {
"type": "string",
"description": "The display name"
},
"InstanceStates": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Status": {
"type": "string"
},
"Error": {
"type": "string"
},
"CurrentReplicas": {
"type": "number",
"minimum": 0
},
"DesiredReplicas": {
"type": "number",
"minimum": 0
}
}
}
},
"ShowDetails": {
"type": "boolean"
},
"SessionDuration": {
"type": "string"
},
"RefreshFrequency": {
"type": "number"
}
}
}