crs3_Locations

This section provides geographic locational information for the criminal activity.

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
City string The name of the city, town, village or other locality, when identifiable, within whose boundaries (the majority of) the facility site is located. This is not always the same as the city used for USPS
County string The name of the county, when identifiable, within whose boundaries (the majority of) the criminal activity was located. The county was derived in ECHO based on the latitude and longitude provided in t
EPARegion string The EPA region in which the facility is located
Latitude string The latitude of the facility or permit holder as maintained in each data system.
Longitude string The longitude of the facility or permit holder as maintained in each data system
State string The two letter abbreviation that represents the state or state equivalent for the U.S.
Zip string US postal ZIP code, as maintained by ICIS.
View JSON Schema on GitHub

JSON Schema

echo-case-crs3-locations-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-case-crs3-locations-schema.json",
  "title": "crs3_Locations",
  "description": "This section provides geographic locational information for the criminal activity.",
  "type": "object",
  "properties": {
    "City": {
      "description": "The name of the city, town, village or other locality, when identifiable, within whose boundaries (the majority of) the facility site is located. This is not always the same as the city used for USPS mail delivery.",
      "title": "City",
      "type": "string",
      "example": "Raleigh"
    },
    "County": {
      "description": "The name of the county, when identifiable, within whose boundaries (the majority of) the criminal activity was located. The county was derived in ECHO based on the latitude and longitude provided in the Summary of Criminal Prosecutions database.",
      "title": "County",
      "type": "string",
      "example": "037"
    },
    "EPARegion": {
      "description": "The EPA region in which the facility is located",
      "example": "04",
      "title": "EPA Region",
      "type": "string"
    },
    "Latitude": {
      "description": "The latitude of the facility or permit holder as maintained in each data system.",
      "example": "34.606651",
      "format": "double",
      "title": "Latitude",
      "type": "string"
    },
    "Longitude": {
      "description": "The longitude of the facility or permit holder as maintained in each data system",
      "example": "-86.982419",
      "format": "double",
      "title": "Longitude",
      "type": "string"
    },
    "State": {
      "description": "The two letter abbreviation that represents the state or state equivalent for the U.S.",
      "example": "FL",
      "title": "State",
      "type": "string"
    },
    "Zip": {
      "description": "US postal ZIP code, as maintained by ICIS.",
      "example": "53140",
      "title": "Zip Code",
      "type": "string"
    }
  },
  "required": [
    "City",
    "State",
    "County",
    "Zip",
    "EPARegion",
    "Latitude",
    "Longitude"
  ]
}