AccuWeather · JSON Structure

Accuweather Ad Structure

Ad schema from AccuWeather API

Type: object Properties: 5
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

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

Properties

slot adDivId adUnitCode bidders upr

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-ad-structure.json",
  "name": "Ad",
  "description": "Ad schema from AccuWeather API",
  "type": "object",
  "properties": {
    "slot": {
      "type": "string",
      "nullable": true
    },
    "adDivId": {
      "type": "string",
      "nullable": true
    },
    "adUnitCode": {
      "type": "string",
      "nullable": true
    },
    "bidders": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "bidder": {
            "type": "string",
            "nullable": true
          },
          "params": {
            "type": "object",
            "additionalProperties": {},
            "nullable": true
          },
          "isBuyItNow": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "nullable": true
    },
    "upr": {
      "type": "float",
      "nullable": true
    }
  }
}