Sentinel Hub · Schema

PlanetOrderRequestBase

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
provider string Specify this value to use data provider Planet.
planetApiKey string Your Planet API key. Get one from Planet https://www.planet.com.
View JSON Schema on GitHub

JSON Schema

PlanetOrderRequestBase.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/PlanetOrderRequestBase",
  "title": "PlanetOrderRequestBase",
  "deprecated": true,
  "type": "object",
  "required": [
    "provider",
    "planetApiKey"
  ],
  "properties": {
    "provider": {
      "description": "Specify this value to use data provider Planet.",
      "type": "string",
      "enum": [
        "PLANET"
      ]
    },
    "planetApiKey": {
      "description": "Your Planet API key. Get one from Planet https://www.planet.com.",
      "type": "string"
    }
  }
}