Weather.gov · JSON Structure

Weather Gov Gridpoint Quantitative Value Layer Structure

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

Type: object Properties: 2 Required: 1
WeatherGovernmentUnited StatesForecastingAlertsOpen Data

GridpointQuantitativeValueLayer is a JSON Structure definition published by Weather.gov, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

uom values

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}