Sentinel Hub · Schema

OrderDeliveryBase

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
id string Delivery ID
sqkm number Size of the delivery in km2.
status object
errorMessage string Error message if status = "DELIVERY_FAILED", "NON_INGESTIBLE" or "IMPORT_FAILED".
View JSON Schema on GitHub

JSON Schema

OrderDeliveryBase.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/OrderDeliveryBase",
  "title": "OrderDeliveryBase",
  "type": "object",
  "properties": {
    "id": {
      "description": "Delivery ID",
      "type": "string",
      "format": "uuid"
    },
    "sqkm": {
      "description": "Size of the delivery in km<sup>2</sup>.",
      "type": "number"
    },
    "status": {
      "$ref": "#/components/schemas/DeliveryStatus"
    },
    "errorMessage": {
      "description": "Error message if status = \"DELIVERY_FAILED\", \"NON_INGESTIBLE\" or \"IMPORT_FAILED\".",
      "type": "string"
    }
  }
}