osm-polygon-features
Version:
OSM tags indicate if a closed way should be treated as a polygon or linestring
34 lines (33 loc) • 555 B
JSON
{
"type": "array",
"items": {
"type": "object",
"required": true,
"properties": {
"key": {
"id": "key",
"type": "string",
"required": true
},
"polygon": {
"type": "string",
"enum": [
"all",
"whitelist",
"blacklist"
],
"required": true
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"key"
]
}
}