crawler-google-places/INPUT_SCHEMA.json
2018-11-20 15:37:52 +01:00

37 lines
1001 B
JSON

{
"title": "Crawler for Google places",
"type": "object",
"schemaVersion": 1,
"properties": {
"searchString": {
"title": "Search",
"type": "string",
"description": "String will be search on Google maps.",
"prefill": "New York Gym",
"editor": "textfield"
},
"lat": {
"title": "Viewport Latitude",
"type": "string",
"description": "Use it with combination with longitude and zoom to set up viewport to search on.",
"editor": "textfield"
},
"lng": {
"title": "Viewport 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",
"type": "integer",
"description": "Use it with combination with longitude and latitude to set up viewport to search on.",
"minimum": 1,
"maximum": 15
}
},
"required": [
"searchString"
]
}