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