Sentinel Hub · Schema

catalog

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
stac_version object
stac_extensions object
type string
id string
title string
description string
links object
View JSON Schema on GitHub

JSON Schema

CatalogCatalog.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/CatalogCatalog",
  "title": "catalog",
  "type": "object",
  "required": [
    "stac_version",
    "type",
    "id",
    "description",
    "links"
  ],
  "properties": {
    "stac_version": {
      "$ref": "#/components/schemas/CatalogStacVersion"
    },
    "stac_extensions": {
      "$ref": "#/components/schemas/CatalogStacExtensions"
    },
    "type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "links": {
      "$ref": "#/components/schemas/CatalogLinks"
    }
  }
}