-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINPUT_SCHEMA.json
27 lines (27 loc) · 984 Bytes
/
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
{
"title": "CheerioCrawler Template",
"type": "object",
"schemaVersion": 1,
"properties": {
"runIds": {
"title": "Run IDs",
"type": "array",
"description": "Runs to start with.",
"editor": "stringList",
"prefill": ["IlwEbDd4iy2vPfvbw", "ZRT5Z0jDzM49zZAaG", "Kxed8O2MCLkbj4RMo"]
},
"fieldsOnlyCountPresent": {
"title": "Only count presence of these fields",
"type": "array",
"description": "Only count presence of these fields",
"editor": "stringList",
"prefill": ["startUrls"]
},
"maxRecordsPerField": {
"title": "Max records per field",
"type": "integer",
"description": "The output item can get huge if all variants are present. This limits to the N most common records per field. By default, all records are included.",
"editor": "number"
}
}
}