AccuWeather · JSON Structure

Accuweather Air Quality Structure

AirQuality schema from AccuWeather API

Type: object Properties: 12
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

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

Properties

category categoryColor date dayOfWeek dayOfWeekAbbreviated displayDate displayTime dominantPollutant hazardStatement overallIndex overallPlumeLabsIndex pollutants

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-air-quality-structure.json",
  "name": "AirQuality",
  "description": "AirQuality schema from AccuWeather API",
  "type": "object",
  "properties": {
    "category": {
      "type": "string",
      "nullable": true
    },
    "categoryColor": {
      "type": "string",
      "nullable": true
    },
    "date": {
      "type": "datetime",
      "nullable": true
    },
    "dayOfWeek": {
      "type": "string",
      "nullable": true
    },
    "dayOfWeekAbbreviated": {
      "type": "string",
      "nullable": true
    },
    "displayDate": {
      "type": "string",
      "nullable": true
    },
    "displayTime": {
      "type": "string",
      "nullable": true
    },
    "dominantPollutant": {
      "type": "string",
      "nullable": true
    },
    "hazardStatement": {
      "type": "string",
      "nullable": true
    },
    "overallIndex": {
      "type": "double"
    },
    "overallPlumeLabsIndex": {
      "type": "double"
    },
    "pollutants": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "concentration": {
            "type": "string",
            "nullable": true
          },
          "index": {
            "type": "double"
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "source": {
            "type": "string",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "nullable": true
    }
  }
}