Sentinel Hub · Schema

dem

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC
View JSON Schema on GitHub

JSON Schema

DEMDataset.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/DEMDataset",
  "title": "dem",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseDataset"
    },
    {
      "type": "object",
      "properties": {
        "dataFilter": {
          "$ref": "#/components/schemas/DEMFiltering"
        },
        "processing": {
          "$ref": "#/components/schemas/DEMProcessing"
        },
        "type": {
          "type": "string",
          "enum": [
            "dem"
          ]
        }
      }
    }
  ]
}