Header

Header schema from EPA Air Quality System (AQS) API

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
status string
request_time string
url string
rows integer
error array
View JSON Schema on GitHub

JSON Schema

aqs-header-schema.json Raw ↑
{
  "$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"
      ]
    }
  }
}