Echo All Geo Structure

GeoJSON Geometry Object

Type: object Properties: 2 Required: 2
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

coordinates type

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-all-geo-structure.json",
  "name": "geo",
  "description": "GeoJSON Geometry Object",
  "type": "object",
  "properties": {
    "coordinates": {
      "type": "array",
      "items": {
        "type": "double"
      },
      "description": "Array of coordinate values in longitude, latitude format.",
      "example": -87.86253
    },
    "type": {
      "type": "string",
      "description": "Indicator of the geometry represented in the GeoJSON Feature, for Echo will always be \"Point\".",
      "example": "Point"
    }
  },
  "required": [
    "type",
    "coordinates"
  ]
}