Weather.gov · JSON Structure

Weather Gov Sigmet Structure

Sigmet schema from weather.gov API

Type: object Properties: 8
WeatherGovernmentUnited StatesForecastingAlertsOpen Data

Sigmet is a JSON Structure definition published by Weather.gov, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id issueTime fir atsu sequence phenomenon start end

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-sigmet-structure.json",
  "name": "Sigmet",
  "description": "Sigmet schema from weather.gov API",
  "type": "object",
  "properties": {
    "id": {
      "type": "uri"
    },
    "issueTime": {
      "type": "datetime"
    },
    "fir": {
      "type": [
        "string",
        "null"
      ]
    },
    "atsu": {
      "$ref": "#/components/schemas/ATSUIdentifier"
    },
    "sequence": {
      "type": [
        "string",
        "null"
      ]
    },
    "phenomenon": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "start": {
      "type": "datetime"
    },
    "end": {
      "type": "datetime"
    }
  },
  "additionalProperties": false
}