Cip Service Geojson Featurecollection Structure

GeoJSon Feature collection

Type: object Properties: 2 Required: 2
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

geojson_featurecollection 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

type features

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-featurecollection-structure.json",
  "name": "geojson_featurecollection",
  "description": "GeoJSon Feature collection",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "FeatureCollection"
      ],
      "example": "FeatureCollection"
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/geojson_feature"
      },
      "example": [
        "string"
      ]
    }
  },
  "required": [
    "type",
    "features"
  ]
}