{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/echo-cwa-geo-schema.json", "title": "geo", "description": "GeoJSON Geometry Object", "type": "object", "properties": { "coordinates": { "description": "Array of coordinate values in longitude, latitude format.", "example": -87.86253, "items": { "type": "number" }, "title": "Coordinates Array", "type": "array" }, "type": { "description": "Indicator of the geometry represented in the GeoJSON Feature, for Echo will always be \"Point\".", "example": "Point", "title": "Geometry", "type": "string" } }, "required": [ "type", "coordinates" ] }