geo

GeoJSON Geometry Object

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
coordinates array Array of coordinate values in longitude, latitude format.
type string Indicator of the geometry represented in the GeoJSON Feature, for Echo will always be "Point".
View JSON Schema on GitHub

JSON Schema

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