AccuWeather · Schema

Bid

Bid schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
bidder string
params object
isBuyItNow boolean
View JSON Schema on GitHub

JSON Schema

accuweather-bid-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-bid-schema.json",
  "title": "Bid",
  "description": "Bid schema from AccuWeather API",
  "type": "object",
  "properties": {
    "bidder": {
      "type": "string",
      "nullable": true
    },
    "params": {
      "type": "object",
      "additionalProperties": {},
      "nullable": true
    },
    "isBuyItNow": {
      "type": "boolean"
    }
  },
  "additionalProperties": false
}