AccuWeather · Schema

Pollutant

Pollutant schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
concentration string
index number
name string
source string
type string
View JSON Schema on GitHub

JSON Schema

accuweather-pollutant-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-pollutant-schema.json",
  "title": "Pollutant",
  "description": "Pollutant schema from AccuWeather API",
  "type": "object",
  "properties": {
    "concentration": {
      "type": "string",
      "nullable": true
    },
    "index": {
      "type": "number",
      "format": "double"
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "source": {
      "type": "string",
      "nullable": true
    },
    "type": {
      "type": "string",
      "nullable": true
    }
  },
  "additionalProperties": false
}