indexed_catchment_properties

indexed_catchment_properties schema from CIP-service Indexing API

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
nhdplusid object
catchmentstatecode string
xwalk_huc12 stringnull
areasqkm number
View JSON Schema on GitHub

JSON Schema

cip-service-indexed-catchment-properties-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/cip-service-indexed-catchment-properties-schema.json",
  "title": "indexed_catchment_properties",
  "description": "indexed_catchment_properties schema from CIP-service Indexing API",
  "type": "object",
  "properties": {
    "nhdplusid": {
      "$ref": "#/components/schemas/nhdplusid"
    },
    "catchmentstatecode": {
      "type": "string",
      "example": "NC"
    },
    "xwalk_huc12": {
      "type": [
        "string",
        "null"
      ],
      "minLength": 12,
      "maxLength": 12,
      "example": "string"
    },
    "areasqkm": {
      "type": "number",
      "example": 0.0
    }
  }
}