AccuWeather · Schema

PageInfo

PageInfo schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
group string Page group like 'three-day' or 'hourly' designating the page category
url string URL of the page
referrer string Referrer of the page
View JSON Schema on GitHub

JSON Schema

accuweather-page-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/accuweather/refs/heads/main/json-schema/accuweather-page-info-schema.json",
  "title": "PageInfo",
  "description": "PageInfo schema from AccuWeather API",
  "type": "object",
  "properties": {
    "group": {
      "type": "string",
      "description": "Page group like 'three-day' or 'hourly' designating the page category",
      "nullable": true
    },
    "url": {
      "type": "string",
      "description": "URL of the page",
      "nullable": true
    },
    "referrer": {
      "type": "string",
      "description": "Referrer of the page",
      "nullable": true
    }
  },
  "additionalProperties": false
}