changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of stations returned",
+ "type": "number"
+ },
+ "stations": {
+ "description": "List of air quality stations with latest measurements",
+ "items": {
+ "properties": {
+ "city": {
+ "description": "City where station is located",
+ "type": "string"
+ },
+ "coordinates": {
+ "properties": {
+ "latitude": {
+ "description": "Latitude coordinate",
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Longitude coordinate",
+ "type": "number"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude"
+ ],
+ "type": "object"
+ },
+ "country": {
+ "description": "Country where station is located",
+ "type": "string"
+ },
+ "location": {
+ "description": "Station location name",
+ "type": "string"
+ },
+ "measurements": {
+ "description": "Current pollutant measurements",
+ "items": {
+ "properties": {
+ "lastUpdated": {
+ "description": "ISO timestamp of last update",
+ "type": "string"
+ },
+ "parameter": {
+ "description": "Pollutant parameter name",
+ "type": "string"
+ },
+ "unit": {
+ "description": "Unit of measurement",
+ "type": "string"
+ },
+ "value": {
+ "description": "Measured value",
+ "type": "number"
+ }
+ },
+ "required": [
+ "parameter",
+ "value",
+ "unit",
+ "lastUpdated"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "location",
+ "city",
+ "country",
+ "coordinates",
+ "measurements"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "stations"
+ ],
+ "type": "object"
+}