addedInput schema / examples
Added value: +[
+ {
+ "bbox": "-74.1,40.6,-73.9,40.8",
+ "end_date": "2025-01-10T23",
+ "start_date": "2025-01-10T00"
+ },
+ {
+ "bbox": "-118.3,34.0,-118.2,34.1",
+ "data_type": "A",
+ "end_date": "2025-01-10T23",
+ "parameters": "OZONE,PM25,NO2",
+ "start_date": "2025-01-08T00",
+ "verbose": true
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "bbox": {
+ "description": "Bounding box queried (minLon,minLat,maxLon,maxLat)",
+ "type": "string"
+ },
+ "count": {
+ "description": "Number of observations returned",
+ "type": "integer"
+ },
+ "observations": {
+ "description": "Historical AQI observations in bounding box",
+ "items": {
+ "properties": {
+ "agency": {
+ "description": "Reporting agency name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aqi": {
+ "description": "Air Quality Index value",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "aqs_code": {
+ "description": "Full AQS code identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "category": {
+ "description": "AQI category numeric code",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "hour": {
+ "description": "Hour observed (0-23)",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Site latitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Site longitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "observed_date": {
+ "description": "Date observed (YYYY-MM-DD)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pollutant": {
+ "description": "Pollutant parameter name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "site": {
+ "description": "Monitoring site name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "unit": {
+ "description": "Unit of measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "utc": {
+ "description": "UTC timestamp",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Pollutant concentration value",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "bbox",
+ "count",
+ "observations"
+ ],
+ "type": "object"
+}