{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-structure/cip-service-geojson-featurecollection-structure.json", "name": "geojson_featurecollection", "description": "GeoJSon Feature collection", "type": "object", "properties": { "type": { "type": "string", "enum": [ "FeatureCollection" ], "example": "FeatureCollection" }, "features": { "type": "array", "items": { "$ref": "#/components/schemas/geojson_feature" }, "example": [ "string" ] } }, "required": [ "type", "features" ] }