Sentinel Hub · Schema
BatchV2ProcessTask
Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the request |
| request | object | |
| domainAccountId | string | Account that submitted the request (Deprecated. It is equal to projectId) |
| projectId | string | Project for which the request was submitted |
| workspaceId | string | Workspace for which the request was submitted |
| status | string | Current processing status of the request |
| error | string | Error description for requests that were submitted but failed during analysis or processing |
| userAction | string | Last user action on the request |
| userActionUpdated | string | Time of last user action update in ISO 8601 |
| created | string | Creation time of the request in ISO 8601 |
| completionPercentage | number | |
| lastUpdated | string | Last updated time of the request in ISO 8601 |
| costPU | number | |
| stoppedStatusReason | string | Description of why job status is STOPPED |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.sentinel-hub.com/schemas/BatchV2ProcessTask",
"title": "BatchV2ProcessTask",
"type": "object",
"properties": {
"id": {
"description": "Unique identifier of the request",
"type": "string",
"format": "uuid"
},
"request": {
"$ref": "#/components/schemas/BatchV2ProcessRequest"
},
"domainAccountId": {
"description": "Account that submitted the request (Deprecated. It is equal to projectId)",
"type": "string",
"format": "uuid"
},
"projectId": {
"description": "Project for which the request was submitted",
"type": "string",
"format": "uuid"
},
"workspaceId": {
"description": "Workspace for which the request was submitted",
"type": "string",
"format": "uuid"
},
"status": {
"description": "Current processing status of the request",
"type": "string",
"enum": [
"CREATED",
"ANALYSING",
"ANALYSIS_DONE",
"PROCESSING",
"DONE",
"FAILED",
"STOPPED"
]
},
"error": {
"description": "Error description for requests that were submitted but failed during analysis or processing",
"type": "string"
},
"userAction": {
"description": "Last user action on the request",
"type": "string",
"enum": [
"NONE",
"ANALYSE",
"START",
"STOP"
]
},
"userActionUpdated": {
"description": "Time of last user action update in ISO 8601",
"type": "string",
"format": "date-time"
},
"created": {
"description": "Creation time of the request in ISO 8601",
"type": "string",
"format": "date-time"
},
"completionPercentage": {
"type": "number"
},
"lastUpdated": {
"description": "Last updated time of the request in ISO 8601",
"type": "string",
"format": "date-time"
},
"costPU": {
"type": "number"
},
"stoppedStatusReason": {
"description": "Description of why job status is STOPPED",
"type": "string",
"enum": [
"OUT_OF_PU",
"USER_ACTION",
"UNHEALTHY"
]
}
}
}