Echo Case Crs0 Map Output Structure

Data container for visualizing case information.

Type: object Properties: 4 Required: 4
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

IconBaseURL MapData PopUpBaseURL QueryID

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/echo-case-crs0-map-output-structure.json",
  "name": "crs0_MapOutput",
  "description": "Data container for visualizing case information.",
  "type": "object",
  "properties": {
    "IconBaseURL": {
      "type": "string",
      "description": "URL where all the icons are located",
      "example": "https://echo.epa.gov/app/map/icons/"
    },
    "MapData": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/crs0_MapData"
      },
      "description": "An array of facility geospatial information.",
      "example": [
        "string"
      ]
    },
    "PopUpBaseURL": {
      "type": "string",
      "description": "Combine this URL with the PUC to get popup info",
      "example": "https://echodata.epa.gov/echo/cwa_rest_services.pop_up?p_id="
    },
    "QueryID": {
      "type": "string",
      "description": "Sequential number assigned to entire search result",
      "example": "245"
    }
  },
  "required": [
    "QueryID",
    "IconBaseURL",
    "PopUpBaseURL",
    "MapData"
  ]
}