{
   "$schema" : "https://schemas.opengis.net/ogcapi/dggs/part1/1.0/openapi/schemas/dggs-json/schema",
   "dggrs": "https://www.opengis.net/def/dggrs/OGC/1.0/ISEA3H",
   "zoneId": "C0-2B-A",
   "depths": [ 0, 1 ],
   "schema":
   {
      "$schema" : "https://json-schema.org/draft/2020-12/schema",
      "$id" : "https://example.com/ogcapi/collections/climate/schema",
      "title" : "Climate Variables",
      "type": "object",
      "properties":
      {
         "rh": {
            "type": "number",
            "title": "relative humidity",
            "x-ogc-propertySeq" : 1,
            "x-ogc-definition": "https://qudt.org/vocab/quantitykind/RelativeHumidity"
         },
         "t": {
            "type": "number",
            "title": "air temperature in celsius",
            "x-ogc-propertySeq" : 2,
            "x-ogc-definition": "https://qudt.org/vocab/quantitykind/Temperature",
            "x-ogc-unit": "C"
         },
         "ua": {
            "type": "number",
            "title": "Eastward wind",
            "x-ogc-propertySeq" : 3,
            "x-ogc-definition": "https://qudt.org/vocab/quantitykind/Speed",
            "x-ogc-unit": "m/s"
         },
         "va": {
            "type": "number",
            "title": "Northward wind",
            "x-ogc-propertySeq" : 4,
            "x-ogc-definition": "https://qudt.org/vocab/quantitykind/Speed",
            "x-ogc-unit": "m/s"
         }
      }
   },
   "dimensions" : [
      {
         "name": "time",
         "interval" : [ "2020-01-01", "2020-04-30" ],
         "grid" : { "cellsCount" : 4, "firstCoordinate" : "2020-01-01", "resolution" : "P1M" }
      },
      {
         "name": "pressure",
         "definition": "https://qudt.org/vocab/quantitykind/AtmosphericPressure",
         "unit" : "hPa",
         "interval" : [ 850.0, 50.0 ],
         "grid" : { "cellsCount" : 3, "coordinates" : [ 850.0, 250.0, 50.0 ] }
      }
   ],
   "values":
   {
      "rh": [
         {
            "depth": 0,
            "shape": { "count": 9, "subZones": 1, "dimensions": { "time": 4, "pressure": 3 } },
            "data": [
               25.1, 25.8, 22.0,   23.1, 22.8, 20.0,   17.1, 12.8, 14.0,   24.1, 13.8, 12.0
            ]
         },
         {
            "depth": 1,
            "shape": { "count": 84, "subZones": 7, "dimensions": { "time": 4, "pressure": 3 } },
            "data": [
               23.2, 25.8, 22.0,   22.8, 20.0, 22.0,   17.1, 12.8, 14.0,   23.1, 17.0, 24.0,
               22.1, 23.8, 22.0,   28.0, 23.2, 22.8,   18.0, 22.0, 17.1,   12.8, 12.0, 17.0,
               25.2, 25.8, 22.0,   27.0, 23.1, 22.8,   21.0, 20.0, 16.1,   12.8, 14.0, 12.0,
               24.1, 24.8, 21.0,   23.0, 23.3, 22.8,   23.0, 22.0, 17.1,   12.8, 13.0, 17.0,
               25.1, 25.8, 22.0,   21.0, 22.1, 22.8,   22.0, 21.0, 13.1,   12.8, 14.0, 14.0,
               26.1, 25.8, 20.0,   22.0, 23.5, 22.8,   21.0, 22.0, 17.1,   12.8, 11.0, 17.0,
               24.1, 25.4, 20.3,   23.0, 22.5, 22.9,   20.9, 21.7, 17.4,   12.9, 11.5, 17.9
            ]
         }
      ],
      "t": [ ... ], "ua": [ ... ], "va": [ ... ]
   }
}
