{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.sentinel-hub.com/schemas/ProcessRequestOutputBatchResponse",
"title": "ProcessRequestOutputBatchResponse",
"type": "object",
"required": [
"format"
],
"properties": {
"identifier": {
"type": "string",
"description": "Response's identifier is used to connect the results of an evalscript with the output file.\nEach response identifier value must either match one of the values in `setup()` -> `output.id` in the evalscript (see example)\nor be `userdata` (see example).\n",
"enum": [
"",
"userdata"
]
},
"format": {
"description": "Format object\n",
"type": "object",
"oneOf": [
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatTiff"
},
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatJson"
},
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatZarr"
}
]
}
}
}