AccuWeather · Schema

OrtbPublisher

OrtbPublisher schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
name string
domain string
categories array
View JSON Schema on GitHub

JSON Schema

accuweather-ortb-publisher-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-ortb-publisher-schema.json",
  "title": "OrtbPublisher",
  "description": "OrtbPublisher schema from AccuWeather API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "nullable": true
    },
    "domain": {
      "type": "string",
      "nullable": true
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true
    }
  },
  "additionalProperties": false
}