Sentinel Hub · Schema

MultiPolygon

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
type string
coordinates array
View JSON Schema on GitHub

JSON Schema

MultiPolygon.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/MultiPolygon",
  "title": "MultiPolygon",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "MultiPolygon"
      ]
    },
    "coordinates": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "array",
          "items": {
            "maxItems": 2,
            "minItems": 2,
            "type": "array",
            "items": {
              "type": "number",
              "format": "double"
            }
          }
        }
      }
    }
  }
}