{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/aqs-header-schema.json", "title": "Header", "description": "Header schema from EPA Air Quality System (AQS) API", "type": "object", "properties": { "status": { "type": "string", "example": "active" }, "request_time": { "type": "string", "example": "string" }, "url": { "type": "string", "example": "https://example.com" }, "rows": { "type": "integer", "example": 100 }, "error": { "type": "array", "items": { "type": "string" }, "example": [ "string" ] } } }