-
Notifications
You must be signed in to change notification settings - Fork 104
/
INPUT_SCHEMA.json
51 lines (51 loc) · 1.67 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
{
"title": "Crawler for Google places",
"description": "This crawler search string on input on google maps and returns all information about found places.",
"type": "object",
"schemaVersion": 1,
"properties": {
"searchString": {
"title": "Search",
"type": "string",
"description": "String will be search on Google maps.",
"prefill": "pubs near prague 2",
"editor": "textfield"
},
"proxyConfig": {
"title": "Proxy configuration",
"type": "object",
"description": "Use Apify Proxy, you need to have some proxy group to get results on Google.",
"prefill": { "useApifyProxy": true },
"editor": "proxy"
},
"lat": {
"title": "Viewport point latitude",
"type": "string",
"description": "Use it with combination with longitude and zoom to set up viewport to search on.",
"editor": "textfield"
},
"lng": {
"title": "Viewport point longitude",
"type": "string",
"description": "Use it with combination with latitude and zoom to set up viewport to search on.",
"editor": "textfield"
},
"zoom": {
"title": "Viewport zoom level",
"type": "integer",
"description": "Use it with combination with point longitude and latitude to set up viewport to search on. You have whole world on map with zoom level 1.",
"minimum": 1,
"maximum": 20
},
"maxCrawledPlaces": {
"title": "Max crawled places",
"type": "integer",
"description": "Use to limit places you want to get from crawler. If you fill 0 or nothing all places will be scrape",
"minimum": 0
}
},
"required": [
"searchString",
"proxyConfig"
]
}