changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "stations": {
+ "description": "Air quality monitoring stations near coordinates",
+ "items": {
+ "properties": {
+ "city": {
+ "description": "City name",
+ "type": "string"
+ },
+ "country": {
+ "description": "Country name",
+ "type": "string"
+ },
+ "location": {
+ "description": "Station location name",
+ "type": "string"
+ },
+ "measurements": {
+ "description": "Air quality measurements",
+ "items": {
+ "properties": {
+ "last_updated": {
+ "description": "ISO 8601 timestamp of last update",
+ "type": "string"
+ },
+ "parameter": {
+ "description": "Measured parameter (e.g., PM2.5, PM10)",
+ "type": "string"
+ },
+ "unit": {
+ "description": "Unit of measurement",
+ "type": "string"
+ },
+ "value": {
+ "description": "Measurement value",
+ "type": "number"
+ }
+ },
+ "required": [
+ "parameter",
+ "value",
+ "unit",
+ "last_updated"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "location",
+ "city",
+ "country",
+ "measurements"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "stations"
+ ],
+ "type": "object"
+}