SinkholeRiskResponse
Sinkhole risk assessment response. Used by: GET/POST /v1/sinkhole-risk
location_info objectnullable
Geocoded location information.
formatted_addressFormatted Address (string)nullable
street_addressStreet Address (string)nullable
cityCity (string)nullable
stateState (string)nullable
state_codeState Code (string)nullable
countyCounty (string)nullable
postal_codePostal Code (string)nullable
latitudeLatitude (number)nullable
longitudeLongitude (number)nullable
geohash8Geohash8 (string)nullable
sinkhole_risk objectrequired
Sinkhole risk data for a location. Used by: Nested in SinkholeRiskResponse
in_risk_zoneIn Risk Zone (boolean)required
Whether the location is in a sinkhole risk zone
ssi_scoreSsi Score (number)nullable
Sinkhole susceptibility index score (0-100)
risk_levelRisk Level (integer)nullable
Risk level (0=none, 1=very low, 2=low, 3=moderate, 4=high, 5=very high)
Possible values: >= 0 and <= 5
risk_labelRisk Label (string)nullable
Human-readable risk level label
Example:
moderateresolution_mResolution M (integer)nullable
Grid resolution in meters
methodology_versionMethodology Version (string)nullable
Methodology version identifier
SinkholeRiskResponse
{
"location_info": {
"formatted_address": "string",
"street_address": "string",
"city": "string",
"state": "string",
"state_code": "string",
"county": "string",
"postal_code": "string",
"latitude": 0,
"longitude": 0,
"geohash8": "string"
},
"sinkhole_risk": {
"in_risk_zone": true,
"ssi_score": 0,
"risk_level": 0,
"risk_label": "moderate",
"resolution_m": 0,
"methodology_version": "string"
}
}