name-suggestion-index/schema/feature.json
Bryan Housel 9b73ff5b58 Reword some of the docs, rename "entries" -> "items"
("entries" sounds more like something that a person entered)
2020-09-22 14:31:48 -04:00

15 lines
318 B
JSON

{
"title": "feature.json",
"description": "A GeoJSON Feature",
"allOf": [
{ "$ref": "http://json.schemastore.org/geojson.json#/definitions/feature" }
],
"type": "object",
"required": ["id"],
"properties": {
"id": {
"type": "string",
"pattern": "^[-_.A-Za-z0-9]+.geojson$"
}
}
}