{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/weather-gov/refs/heads/main/json-structure/weather-gov-gridpoint-quantitative-value-layer-structure.json", "name": "GridpointQuantitativeValueLayer", "description": "A gridpoint layer consisting of quantitative values (numeric values with associated units of measure).\n", "type": "object", "properties": { "uom": { "$ref": "#/components/schemas/UnitOfMeasure" }, "values": { "type": "array", "items": { "required": [ "validTime", "value" ], "type": "object", "properties": { "validTime": { "$ref": "#/components/schemas/ISO8601Interval" }, "value": { "type": [ "number", "null" ] } }, "additionalProperties": false } } }, "required": [ "values" ] }