Weather.gov · Schema

PaginationInfo

Links for retrieving more data from paged data sets

WeatherGovernmentUnited StatesForecastingAlertsOpen Data

Properties

Name Type Description
next string A link to the next page of records
View JSON Schema on GitHub

JSON Schema

weather-gov-pagination-info-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-pagination-info-schema.json",
  "title": "PaginationInfo",
  "description": "Links for retrieving more data from paged data sets",
  "type": "object",
  "properties": {
    "next": {
      "type": "string",
      "description": "A link to the next page of records",
      "format": "uri"
    }
  },
  "required": [
    "next"
  ],
  "additionalProperties": false
}