{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/BatchTileOrigin", "title": "BatchTileOrigin", "description": "Coordinates of the tile origin (lower left corner) in the tile's CRS.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "maxItems": 2, "items": { "type": "number", "format": "double" } }, "crs": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "name" ] }, "properties": { "type": "object", "properties": { "name": { "type": "string", "description": "CRS used by the tile, e.g. `urn:ogc:def:crs:EPSG::4326`", "example": "urn:ogc:def:crs:EPSG::4326" } } } } } } }