{ "$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 }