Aqs Header Structure

Header schema from EPA Air Quality System (AQS) API

Type: object Properties: 5
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Header is a JSON Structure definition published by EPA — U.S. Environmental Protection Agency, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status request_time url rows error

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-structure/aqs-header-structure.json",
  "name": "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": "int32",
      "example": 100
    },
    "error": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "string"
      ]
    }
  }
}