{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.sentinel-hub.com/schemas/ProcessRequestOutputResponse",
"title": "ProcessRequestOutputResponse",
"type": "object",
"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 (default is `image/png`).",
"type": "object",
"oneOf": [
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatPng"
},
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatJpeg"
},
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatTiff"
},
{
"$ref": "#/components/schemas/ProcessRequestOutputFormatJson"
}
]
}
}
}