-
Notifications
You must be signed in to change notification settings - Fork 0
/
INPUT_SCHEMA.json
33 lines (33 loc) · 1.2 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
{
"title": "weather-scraper",
"description": "",
"type": "object",
"schemaVersion": 1,
"properties": {
"startUrls": {
"title": "Start urls",
"description": "",
"default": [{ "url": "https://weather.com/en-US/weather/today/l/a29fd98118188e1bcd8684c8152b235597d0cb3e5009426bee910a937958a000" }],
"prefill": [{ "url": "https://weather.com/en-US/weather/today/l/a29fd98118188e1bcd8684c8152b235597d0cb3e5009426bee910a937958a000" }],
"example": [
{ "url": "https://weather.com/en-US/weather/today/l/a29fd98118188e1bcd8684c8152b235597d0cb3e5009426bee910a937958a000" }
],
"type": "array",
"uniqueItems": true,
"editor": "requestListSources"
},
"proxyConfiguration": {
"title": "Proxy configuration",
"type": "object",
"description": "Select proxies to be used by your actor.",
"example": {
"useApifyProxy": true
},
"prefill": {
"useApifyProxy": true
},
"editor": "proxy"
}
},
"required": ["startUrls", "proxyConfiguration"]
}