Sentinel Hub · Schema

BatchCollectionMetadata

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
@id string
id string Batch Collection identifier
location object Batch Collection location
datasetType object
bands array
View JSON Schema on GitHub

JSON Schema

BatchCollectionMetadata.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/BatchCollectionMetadata",
  "title": "BatchCollectionMetadata",
  "type": "object",
  "properties": {
    "@id": {
      "type": "string",
      "format": "uri"
    },
    "id": {
      "description": "Batch Collection identifier",
      "type": "string"
    },
    "location": {
      "description": "Batch Collection location",
      "$ref": "#/components/schemas/Location"
    },
    "datasetType": {
      "$ref": "#/components/schemas/CustomDatasetType"
    },
    "bands": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BandMetadata"
      }
    }
  }
}