-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINPUT_SCHEMA.json
54 lines (54 loc) · 1.92 KB
/
INPUT_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
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
{
"title": "Status dashboard",
"type": "object",
"schemaVersion": 1,
"required": ["task"],
"properties": {
"task": {
"title": "Task",
"description": "Type of task",
"type": "string",
"editor": "hidden",
"default": "serve"
},
"charts": {
"title": "Charts",
"description": "actorId - ID of actor, minDatasetItems - consider run with less items in dataset as failed, maxRunTimeSecs - consider actor runnning longer than this as failed",
"prefill": [{ "id": "my-super-chart-1", "name": "My chart", "showTable": false }],
"example": [{ "id": "my-super-chart-1", "name": "My chart", "showTable": false }],
"type": "array",
"editor": "json",
"nullable": true
},
"rebrandly": {
"title": "Rebrandly config",
"description": "Rebrandly connection configuration",
"type": "object",
"editor": "json",
"prefill": {
"id": "LinkId",
"apiKey": "YourApiKey",
"workspace": "YourWorkspaceId",
"title": "My cool dashboard"
},
"example": {
"id": "LinkId",
"apiKey": "YourApiKey",
"workspace": "YourWorkspaceId",
"title": "My cool dashboard"
},
"nullable": true
},
"intervals": {
"title": "Intervals",
"description": "List of intervals that should be displayed on status page",
"type": "array",
"editor": "stringList",
"uniqueItems": true,
"minItems": 1,
"nullable": false,
"example": [ "day", "week", "two-weeks", "month", "two-months" ],
"prefill": [ "day", "week", "two-weeks", "month", "two-months" ]
}
}
}