Weather.gov · Schema

AlertCollection

AlertCollection schema from weather.gov API

WeatherGovernmentUnited StatesForecastingAlertsOpen Data

Properties

Name Type Description
title string A title describing the alert collection
updated string The last time a change occurred to this collection
pagination object
View JSON Schema on GitHub

JSON Schema

weather-gov-alert-collection-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-collection-schema.json",
  "title": "AlertCollection",
  "description": "AlertCollection schema from weather.gov API",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "A title describing the alert collection"
    },
    "updated": {
      "type": "string",
      "description": "The last time a change occurred to this collection",
      "format": "date-time"
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationInfo"
    }
  }
}