indexed_flowline_properties

indexed_flowline_properties schema from CIP-service Indexing API

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
nhdplusid object
gnis_id string NHD GNIS identifier
gnis_name string NHD GNIS name
reachcode object
fmeasure object NHD flowline from measure.
tmeasure object NHD flowline to measure.
View JSON Schema on GitHub

JSON Schema

cip-service-indexed-flowline-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-flowline-properties-schema.json",
  "title": "indexed_flowline_properties",
  "description": "indexed_flowline_properties schema from CIP-service Indexing API",
  "type": "object",
  "properties": {
    "nhdplusid": {
      "$ref": "#/components/schemas/nhdplusid"
    },
    "gnis_id": {
      "description": "NHD GNIS identifier",
      "type": "string",
      "example": "12345"
    },
    "gnis_name": {
      "description": "NHD GNIS name",
      "type": "string",
      "example": "EPA Facility"
    },
    "reachcode": {
      "$ref": "#/components/schemas/reachcode"
    },
    "fmeasure": {
      "description": "NHD flowline from measure.",
      "$ref": "#/components/schemas/measure"
    },
    "tmeasure": {
      "description": "NHD flowline to measure.",
      "$ref": "#/components/schemas/measure"
    }
  }
}