Provenance
Freshness & coverage
Methods (4)
searchVoluntaryCleanup
readUT DEQ Voluntary Cleanup Program (~142 sites). Filter county/siteName/derrId/city.
Input schema
{ "type": "object", "properties": { "siteName": { "type": "string" }, "derrId": { "type": "string" }, "city": { "type": "string" }, "county": { "type": "string", "examples": [ "Salt Lake" ] }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }SITECNTY (NOT COUNTY) UPPERCASE upstream. Mostly Salt Lake County.
searchBrownfields
readUT DEQ Brownfields (Targeted + Other combined, ~29). bfType: targeted/other/all.
Input schema
{ "type": "object", "properties": { "siteName": { "type": "string" }, "derrId": { "type": "string" }, "bfType": { "type": "string", "examples": [ "targeted" ], "oneOf": [ { "type": "string", "enum": [ "all" ] }, { "type": "string", "enum": [ "targeted" ] }, { "type": "string", "enum": [ "other" ] } ] }, "county": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }searchHazardousWasteSites
readUT DEQ CERCLIS sites (~469, ~145 active). Default activeOnly filters ARCHIVED="No".
Input schema
{ "type": "object", "properties": { "siteName": { "type": "string" }, "derrId": { "type": "string" }, "activeOnly": { "type": "boolean", "examples": [ true ] }, "npl": { "type": "string" }, "county": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }For RCRA G/T/TSDF use EPA Envirofacts — UT publishes only CERCLIS-style sites.
getServiceInfo
readSchema + record counts for any of 4 services (UT Department of Environmental Quality).
Input schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "vcp" ] } }, "additionalProperties": false }
