{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/opentripmap/refs/heads/main/json-schema/featurecollection.json", "title": "FeatureCollection", "type": "object", "description": "Feature Collection", "externalDocs": { "url": "http://geojson.org/geojson-spec.html#feature-collection-objects", "description": "The GeoJSON Format specification" }, "properties": { "type": { "type": "string", "enum": [ "Feature" ], "description": "FeatureCollection" }, "features": { "type": "array", "items": { "$ref": "#/components/schemas/Feature" } } } }