Sentinel Hub · Schema

BYOCCollectionMetadata

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

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

JSON Schema

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