Sentinel Hub · Schema

itemCollection

A GeoJSON FeatureCollection augmented with foreign members that contain values relevant to a STAC entity

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
type string
features array
links array An array of links. Can be used for pagination, e.g. by providing a link with the `next` relation type.
View JSON Schema on GitHub

JSON Schema

CatalogItemSearchItemCollectionItemCollection.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/CatalogItemSearchItemCollectionItemCollection",
  "title": "itemCollection",
  "description": "A GeoJSON FeatureCollection augmented with foreign members that contain values relevant to a STAC entity",
  "type": "object",
  "required": [
    "features",
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "FeatureCollection"
      ]
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CatalogItem"
      }
    },
    "links": {
      "type": "array",
      "description": "An array of links. Can be used for pagination, e.g. by providing a link with the `next` relation type.",
      "items": {
        "$ref": "#/components/schemas/CatalogLink"
      },
      "example": [
        {
          "rel": "next",
          "href": "https://services.sentinel-hub.com/catalog/v1/search?next=10"
        }
      ]
    }
  }
}