changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of matching stations",
+ "type": "number"
+ },
+ "keyword": {
+ "description": "Search keyword used",
+ "type": "string"
+ },
+ "stations": {
+ "description": "List of matching stations",
+ "items": {
+ "properties": {
+ "aqi": {
+ "description": "Current AQI value",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country where station is located",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_seen": {
+ "description": "Timestamp of last measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Station latitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Station longitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Station name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "station_id": {
+ "description": "Unique station identifier",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "timezone": {
+ "description": "Station timezone",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Station information URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "keyword",
+ "count",
+ "stations"
+ ],
+ "type": "object"
+}