{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/CatalogGeometrycollectionGeoJSON", "title": "geometrycollectionGeoJSON", "type": "object", "required": [ "type", "geometries" ], "properties": { "type": { "type": "string", "enum": [ "GeometryCollection" ] }, "geometries": { "type": "array", "items": { "$ref": "#/components/schemas/CatalogGeometryGeoJSON" } } } }