AccuWeather · JSON Structure

Accuweather Ortb Data Structure

OrtbData schema from AccuWeather API

Type: object Properties: 3
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

OrtbData is a JSON Structure definition published by AccuWeather, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name extensions segments

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/accuweather/refs/heads/main/json-structure/accuweather-ortb-data-structure.json",
  "name": "OrtbData",
  "description": "OrtbData schema from AccuWeather API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "nullable": true
    },
    "extensions": {
      "type": "object",
      "additionalProperties": {
        "nullable": true
      },
      "nullable": true
    },
    "segments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "value": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "nullable": true
    }
  }
}