Cip Service Geojson Geometry Structure

geojson_geometry schema from CIP-service Indexing API

Type: object Properties: 2
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

geojson_geometry is a JSON Structure definition published by EPA — U.S. Environmental Protection Agency, describing 2 properties. 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/cip-service-geojson-geometry-structure.json",
  "name": "geojson_geometry",
  "description": "geojson_geometry schema from CIP-service Indexing API",
  "type": "object",
  "properties": {
    "coordinates": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/coordinates1"
        },
        {
          "$ref": "#/components/schemas/coordinates2"
        },
        {
          "$ref": "#/components/schemas/coordinates3"
        },
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/coordinates3"
          }
        }
      ],
      "example": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "Point",
        "LineString",
        "Polygon",
        "MultiPoint",
        "MultiLineString",
        "MultiPolygon"
      ],
      "description": "the geometry type",
      "example": "Point"
    }
  }
}