-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathINPUT_SCHEMA.json
More file actions
42 lines (42 loc) · 1.41 KB
/
INPUT_SCHEMA.json
File metadata and controls
42 lines (42 loc) · 1.41 KB
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
{
"title": "@crawlee/cheerio typescript template",
"type": "object",
"schemaVersion": 1,
"properties": {
"proxy": {
"title": "Proxy",
"type": "object",
"description": "Proxies to use while scraping the proxies. Recommended.",
"editor": "proxy",
"prefill": {
"useApifyProxy": true
},
"default": {
"useApifyProxy": true
},
},
"runTests": {
"title": "Run tests?",
"type": "boolean",
"editor": "checkbox",
"description": "Whether or not to test the proxies and only return the ones that pass. This will increase the actor's run-time.",
"default": true
},
"debug": {
"title": "Debug mode?",
"type": "boolean",
"editor": "checkbox",
"description": "Whether or not to run the actor in debug mode (with extra log messages).",
"default": false
},
"kvStoreName": {
"title": "Key-value store name",
"type": "string",
"description": "The name of the key-value store to save a .txt of the proxies in. Leave as \"default\" to save to the default one.",
"editor": "textfield",
"prefill": "default",
"default": "default"
}
},
"required": ["proxy"]
}