changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "aqi": {
+ "description": "Air Quality Index value",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "attributions": {
+ "description": "Data sources and attributions",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Attribution source name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Attribution source URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "category": {
+ "description": "AQI category (Good/Moderate/Unhealthy/Hazardous)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "dominant_pollutant": {
+ "description": "Primary pollutant causing poor air quality",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "measured_at": {
+ "description": "ISO timestamp of measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "measurements": {
+ "properties": {
+ "co": {
+ "description": "Carbon monoxide in µg/m³",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "humidity_pct": {
+ "description": "Humidity percentage",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "no2": {
+ "description": "Nitrogen dioxide in µg/m³",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "o3": {
+ "description": "Ozone concentration in µg/m³",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pm10": {
+ "description": "PM10 concentration in µg/m³",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pm25": {
+ "description": "PM2.5 concentration in µg/m³",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pressure_hpa": {
+ "description": "Atmospheric pressure in hPa",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "so2": {
+ "description": "Sulfur dioxide in µg/m³",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "temperature_c": {
+ "description": "Temperature in Celsius",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "wind_speed": {
+ "description": "Wind speed",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "station": {
+ "properties": {
+ "id": {
+ "description": "Station identifier",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Station latitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Station longitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Station/city name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Station information URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "timezone": {
+ "description": "Timezone of station",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "aqi",
+ "category",
+ "dominant_pollutant",
+ "station",
+ "measurements",
+ "measured_at",
+ "timezone",
+ "attributions"
+ ],
+ "type": "object"
+}