{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/BatchV2ZarrOutput", "title": "ZarrOutput", "description": "Specifies Zarr creation parameters.\n\nIf this parameter is specified, all outputs in processRequest **must**\nbe of the type zarr/array and `output` can not be specified.\nWith Zarr output **only** WGS84 and LAEA grids **are supported**.\n", "required": [ "delivery", "group", "type" ], "properties": { "type": { "type": "string", "enum": [ "zarr" ] }, "delivery": { "description": "Path or path template specifying where batch processing results shall be stored. Supported formats:
.zattrs, .zgroup, .zmetadata.\n",
"$ref": "#/components/schemas/ObjectStorageInfoV2"
},
"group": {
"$ref": "#/components/schemas/BatchV2ZarrOutputGroup"
},
"arrayParameters": {
"description": "Parameters that will be used for all output arrays, except where overridden with `arrayOverrides`. Required unless `arrayOverrides` includes all required fields for all output arrays. All fields are standard Zarr fields. Further information can be found on the link below.\n",
"externalDocs": {
"description": "Zarr metadata specification version 2, Attributes",
"url": "https://zarr-specs.readthedocs.io/en/latest/v2/v2.0.html#metadata"
},
"allOf": [
{
"$ref": "#/components/schemas/BatchV2ZarrOutputArrayParameters"
}
]
},
"arrayOverrides": {
"$ref": "#/components/schemas/BatchV2ZarrOutputArrayOverrides"
}
}
}