Sentinel Hub · Schema

AsyncProcessRequest

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
input object
output object
evalscript string Your evalscript. For details, click here. Either this or `evalscriptReference` parameter is required.
evalscriptReference object Reference to your evalscript stored in an object storage. For details, click here. Either this or `evalscript` parameter is r
View JSON Schema on GitHub

JSON Schema

AsyncProcessRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/AsyncProcessRequest",
  "title": "AsyncProcessRequest",
  "type": "object",
  "required": [
    "input",
    "output"
  ],
  "properties": {
    "input": {
      "$ref": "#/components/schemas/ProcessRequestInput"
    },
    "output": {
      "$ref": "#/components/schemas/AsyncProcessRequestOutput"
    },
    "evalscript": {
      "description": "Your evalscript. For details, click\n<a href=\"https://docs.planet.com/develop/evalscripts/\" target=\"_blank\">here</a>.\n\nEither this or `evalscriptReference` parameter is required.\n",
      "type": "string"
    },
    "evalscriptReference": {
      "description": "Reference to your evalscript stored in an object storage. For details, click\n<a href=\"https://docs.planet.com/develop/evalscripts/\" target=\"_blank\">here</a>.\n\nEither this or `evalscript` parameter is required.\n",
      "$ref": "#/components/schemas/ObjectStorageInfoV2"
    }
  }
}