Weather.gov · Schema

GridpointQuantitativeValueLayer

A gridpoint layer consisting of quantitative values (numeric values with associated units of measure).

WeatherGovernmentUnited StatesForecastingAlertsOpen Data

Properties

Name Type Description
uom object
values array
View JSON Schema on GitHub

JSON Schema

weather-gov-gridpoint-quantitative-value-layer-schema.json Raw ↑
{
  "$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"
  ]
}