Sentinel Hub · Schema

BatchStatisticsTaskStatusDto

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
id string UUID of the submitted request.
status string Current processing status of the request. Must NOT be specified when creating new requests
error string Description of error in case the request failed.
completionPercentage number
lastUpdated string
costPu number Cost of the request in processing units
created string Creation time of the request
stoppedStatusReason string The reason for request having status STOPPED.
View JSON Schema on GitHub

JSON Schema

BatchStatisticsTaskStatusDto.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/BatchStatisticsTaskStatusDto",
  "title": "BatchStatisticsTaskStatusDto",
  "type": "object",
  "properties": {
    "id": {
      "description": "UUID of the submitted request.",
      "format": "uuid",
      "type": "string"
    },
    "status": {
      "description": "Current processing status of the request. Must NOT be specified when creating new requests",
      "type": "string",
      "enum": [
        "CREATED",
        "ANALYSING",
        "ANALYSIS_DONE",
        "PROCESSING",
        "DONE",
        "FAILED",
        "STOPPED",
        "PARTIAL"
      ]
    },
    "error": {
      "description": "Description of error in case the request failed.",
      "type": "string"
    },
    "completionPercentage": {
      "type": "number"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    },
    "costPu": {
      "type": "number",
      "description": "Cost of the request in processing units"
    },
    "created": {
      "description": "Creation time of the request",
      "type": "string",
      "format": "date-time"
    },
    "stoppedStatusReason": {
      "description": "The reason for request having status STOPPED.",
      "type": "string",
      "enum": [
        "OUT_OF_PU",
        "USER_ACTION"
      ]
    }
  }
}