Sentinel Hub · Schema

GSBucketInfo

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
url string A URL pointing to a Google Cloud Storage bucket or an object in a GCS bucket, e.g. `gs://my-bucket/some-folder` or `gs://my-bucket/some-folder/some-file.gpkg`.
credentials string Base64-encoded service account credentials in JSON format.
View JSON Schema on GitHub

JSON Schema

GSBucketInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/GSBucketInfo",
  "title": "GSBucketInfo",
  "type": "object",
  "required": [
    "url",
    "credentials"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "A URL pointing to a Google Cloud Storage bucket or an object in a GCS bucket, e.g. `gs://my-bucket/some-folder` or `gs://my-bucket/some-folder/some-file.gpkg`."
    },
    "credentials": {
      "type": "string",
      "description": "Base64-encoded service account credentials in JSON format."
    }
  }
}