{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/cip-service-geojson-featurecollection-schema.json", "title": "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" ] }