Sentinel Hub · Schema

featureCollectionGeoJSON

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

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

JSON Schema

CatalogFeatureCollectionGeoJSON.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/CatalogFeatureCollectionGeoJSON",
  "title": "featureCollectionGeoJSON",
  "type": "object",
  "required": [
    "type",
    "features"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "FeatureCollection"
      ]
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CatalogFeatureGeoJSON"
      }
    }
  }
}