Weather.gov · Schema

AlertAtomFeed

An alert feed in Atom format

WeatherGovernmentUnited StatesForecastingAlertsOpen Data

Properties

Name Type Description
id string
generator string
updated string
author object
title string
entry array
View JSON Schema on GitHub

JSON Schema

weather-gov-alert-atom-feed-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-alert-atom-feed-schema.json",
  "title": "AlertAtomFeed",
  "description": "An alert feed in Atom format",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "xml": {
        "namespace": "http://www.w3.org/2005/Atom"
      }
    },
    "generator": {
      "type": "string",
      "xml": {
        "namespace": "http://www.w3.org/2005/Atom"
      }
    },
    "updated": {
      "type": "string",
      "xml": {
        "namespace": "http://www.w3.org/2005/Atom"
      }
    },
    "author": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "xml": {
            "namespace": "http://www.w3.org/2005/Atom"
          }
        }
      },
      "xml": {
        "namespace": "http://www.w3.org/2005/Atom"
      }
    },
    "title": {
      "type": "string",
      "xml": {
        "namespace": "http://www.w3.org/2005/Atom"
      }
    },
    "entry": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AlertAtomEntry"
      },
      "xml": {
        "namespace": "http://www.w3.org/2005/Atom"
      }
    }
  }
}