{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/air-quality-programmatic-apis/refs/heads/main/json-structure/aqicn-station-search-result-structure.json", "name": "StationSearchResult", "description": "Station search result", "type": "object", "properties": { "status": { "type": "string", "example": "ok" }, "data": { "type": "array", "description": "List of matching stations", "items": { "type": "object", "properties": { "uid": { "type": "int32", "description": "Station unique ID", "example": 8502 }, "aqi": { "type": "string", "description": "Current AQI value or \"N/A\"", "example": "45" }, "station": { "type": "object", "properties": { "name": { "type": "string", "description": "Station name", "example": "Beijing, China" }, "geo": { "type": "array", "items": { "type": "double" } } } } } } } } }