{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/weather-gov/refs/heads/main/json-schema/weather-gov-gridpoint-quantitative-value-layer-schema.json", "title": "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" ] }