Sentinel Hub · Schema

Quota

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
collectionId object
quotaSqkm number This is total purchased quota. Available quota is quotaSqkm - quotaUsed.
quotaUsed number Quota used in square kilometers.
View JSON Schema on GitHub

JSON Schema

Quota.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/Quota",
  "title": "Quota",
  "type": "object",
  "properties": {
    "collectionId": {
      "$ref": "#/components/schemas/QuotaTpdiCollectionId"
    },
    "quotaSqkm": {
      "type": "number",
      "description": "This is total purchased quota. Available quota is quotaSqkm - quotaUsed.",
      "readOnly": true
    },
    "quotaUsed": {
      "type": "number",
      "description": "Quota used in square kilometers.",
      "readOnly": true
    }
  }
}