{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/BatchZarrParameters", "title": "BatchZarrParameters", "description": "Specifies Zarr creation parameters.\n\nIf this parameter is specified, all outputs in processRequest **must** be of the type zarr/array\nand neither `bucketName` nor `output` can be specified.\nWith Zarr output **only** WGS84 and LAEA grids **are supported**.\n", "type": "object", "required": [ "path", "group" ], "properties": { "path": { "description": "Path or path template specifying where batch processing results shall be stored. Supported formats:
.zattrs, .zgroup, .zmetadata.\n",
"type": "string"
},
"group": {
"$ref": "#/components/schemas/Group"
},
"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/ArrayParameters"
}
]
},
"arrayOverrides": {
"$ref": "#/components/schemas/ArrayOverrides"
}
}
}