-
Notifications
You must be signed in to change notification settings - Fork 1
/
INPUT_SCHEMA.json
56 lines (56 loc) · 2.16 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
55
56
{
"title": "CheerioCrawler Template",
"description": "Supply either taskId/actorId or direct runIds",
"type": "object",
"schemaVersion": 1,
"properties": {
"runIds": {
"title": "Rud IDs",
"type": "array",
"description": "List of runs to check.",
"editor": "stringList",
"prefill": [
"ILnaIxL36Qd9tLgUh"
]
},
"resurrectRuns": {
"title": "Resurrect runs after rebirth",
"type": "boolean",
"description": "Will resurrect the runs for which requests have been rebirth",
"default": false,
"sectionCaption": "Run resurrection (optional)"
},
"resurrectRunsConcurrency": {
"title": "Concurrency of resurrected runs",
"type": "integer",
"description": "Will rebirth requests with this retryCount found in the log.",
"default": 1
},
"resurrectBuildName": {
"title": "Resurrect build name (optional override)",
"type": "string",
"description": "You can override the current build of the run",
"editor": "textfield"
},
"actorOrTaskId": {
"title": "Actor or task ID",
"type": "string",
"description": "Actor or task ID",
"editor": "textfield",
"sectionCaption": "Scan actor or task",
"sectionDescription": "Provide an ID of an actor or task. All runs of that actor or task will be scanned. Optionally you can restrict the date when the runs started."
},
"dateFrom": {
"title": "Date from",
"type": "string",
"description": "Optional date to limit from which date the run will be scanned. The date should be in ISO standard (e.g. 2020-10-01)",
"editor": "textfield"
},
"dateTo": {
"title": "Date to",
"type": "string",
"description": "Optional date to limit to which date the run will be scanned. The date should be in ISO standard (e.g. 2020-10-15)",
"editor": "textfield"
}
}
}