NOAA · Schema

AlertCollection

NOAA NWS API schema for AlertCollection

WeatherClimateForecastAlertsOceanTidesAviation WeatherGovernmentOpen DataEnvironmental

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

noaa-nws-alertcollection.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/noaa/main/json-schema/noaa-nws-alertcollection.json",
  "title": "AlertCollection",
  "description": "NOAA NWS API schema for AlertCollection",
  "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"
    }
  }
}