Updated input schema

This commit is contained in:
JakubDrobnik 2019-01-04 20:01:05 +01:00
parent bfd01dbb7f
commit d7a08eb19c

View File

@ -18,33 +18,34 @@
"prefill": { "useApifyProxy": true }, "prefill": { "useApifyProxy": true },
"editor": "proxy" "editor": "proxy"
}, },
"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
},
"lat": { "lat": {
"title": "Viewport Latitude", "title": "Viewport point latitude",
"type": "string", "type": "string",
"description": "Use it with combination with longitude and zoom to set up viewport to search on.", "description": "Use it with combination with longitude and zoom to set up viewport to search on.",
"editor": "textfield" "editor": "textfield"
}, },
"lng": { "lng": {
"title": "Viewport Longitude", "title": "Viewport point longitude",
"type": "string", "type": "string",
"description": "Use it with combination with latitude and zoom to set up viewport to search on.", "description": "Use it with combination with latitude and zoom to set up viewport to search on.",
"editor": "textfield" "editor": "textfield"
}, },
"zoom": { "zoom": {
"title": "Viewport Zoom", "title": "Viewport zoom level",
"type": "integer", "type": "integer",
"description": "Use it with combination with longitude and latitude to set up viewport to search on.", "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, "minimum": 1,
"maximum": 15 "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": [ "required": [
"searchString" "searchString",
"proxyConfig"
] ]
} }