AccuWeather · Schema

Ad

Ad schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
slot string
adDivId string
adUnitCode string
bidders array
upr number
View JSON Schema on GitHub

JSON Schema

accuweather-ad-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-ad-schema.json",
  "title": "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": "number",
      "format": "float",
      "nullable": true
    }
  },
  "additionalProperties": false
}