crawler-google-places/INPUT_SCHEMA.json

45 lines
1.3 KiB
JSON
Raw Normal View History

2018-11-20 14:29:46 +00:00
{
"title": "Crawler for Google places",
2018-11-20 14:50:56 +00:00
"description": "This crawler search string on input on google maps and returns all information about found places.",
2018-11-20 14:29:46 +00:00
"type": "object",
"schemaVersion": 1,
"properties": {
2018-11-20 14:50:56 +00:00
"proxyGoups": {
"title": "Proxy configuration",
"type": "object",
"description": "Optionaly use Apify Proxy",
"prefill": { "useApifyProxy": true },
"editor": "proxy"
},
2018-11-20 14:29:46 +00:00
"searchString": {
"title": "Search",
"type": "string",
"description": "String will be search on Google maps.",
"prefill": "New York Gym",
"editor": "textfield"
},
"lat": {
"title": "Viewport Latitude",
2018-11-20 14:35:05 +00:00
"type": "string",
2018-11-20 14:36:33 +00:00
"description": "Use it with combination with longitude and zoom to set up viewport to search on.",
"editor": "textfield"
2018-11-20 14:29:46 +00:00
},
"lng": {
"title": "Viewport Longitude",
2018-11-20 14:35:05 +00:00
"type": "string",
2018-11-20 14:36:33 +00:00
"description": "Use it with combination with latitude and zoom to set up viewport to search on.",
"editor": "textfield"
2018-11-20 14:29:46 +00:00
},
"zoom": {
"title": "Viewport Zoom",
2018-11-20 14:37:52 +00:00
"type": "integer",
2018-11-20 14:29:46 +00:00
"description": "Use it with combination with longitude and latitude to set up viewport to search on.",
2018-11-20 14:31:33 +00:00
"minimum": 1,
2018-11-20 14:29:46 +00:00
"maximum": 15
}
},
"required": [
"searchString"
]
}