-
Notifications
You must be signed in to change notification settings - Fork 3
/
INPUT_SCHEMA.json
35 lines (35 loc) · 1.12 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
{
"title": "This actor must be runned only from other actors",
"type": "object",
"schemaVersion": 1,
"properties": {
"startUrls": {
"title": "Site URLs to checkup",
"type": "array",
"description": "Single URL per site is enough",
"prefill": [
{ "url": "https://www.apify.com" }
],
"editor": "requestListSources"
},
"proxyConfig": {
"title": "Proxy configuration",
"type": "object",
"description": "You will need to use Apify proxy or custom proxies. Residential proxy recommended to ensure checkup accuracy.",
"default": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
},
"prefill": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
},
"editor": "proxy",
"sectionCaption": "Proxy settings",
"sectionDescription": "Proxy to access targeted websites"
}
},
"required": [
"startUrls"
]
}