{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-geological-survey/refs/heads/main/json-structure/usgs-earthquake-api-earthquake-geometry-structure.json", "description": "GeoJSON Point geometry for the earthquake epicenter location.", "type": "object", "properties": { "type": { "type": "string", "description": "GeoJSON geometry type (always Point).", "example": "Point" }, "coordinates": { "type": "array", "description": "Array of [longitude, latitude, depth_km]. Depth is in kilometers below the surface (positive = deeper).", "items": { "type": "double" }, "example": [ -122.0, 37.75, 10.5 ] } }, "name": "EarthquakeGeometry" }