{"openapi":"3.1.0","info":{"title":"Real-Time Flood Impacts","description":"#### The Real-Time Flood Impact API exposes the locations, called Flood Impact Locations, where the USGS measured the height of critical safety or infrastructure that may be vulnerable to flooding. Examples of Flood Impact Locations include embankments, roads and bridges, pedestrian paths, and buildings. Flood Impact Locations are surveyed and associated with a nearby USGS real-time streamgage. All gage and real-time data can be found at [https://waterdata.usgs.gov/](https://waterdata.usgs.gov/).\n\nProvisional Data Statement: \n\nThis information is preliminary or provisional and is subject to revision. It is being provided to meet the need for timely best science. The information has not received final approval by the U.S. Geological Survey (USGS) and is provided on the condition that neither the USGS nor the U.S. Government shall be held liable for any damages resulting from the authorized or unauthorized use of the information. \n\nImprobable values of current conditions data relayed by satellite or other telemetry are automatically screened until they can be verified. Provisional data may be inaccurate due to instrument malfunctions or physical changes at the measurement site. Subsequent review based on field inspections and measurements may result in substantial revisions to the data.\n\n Data users are cautioned to consider carefully the provisional nature of the information before using it for decisions that concern personal or public safety or the conduct of business that involves substantial monetary or operational consequences. Information concerning the accuracy and appropriate uses of these data or concerning other hydrologic data [may be obtained from the USGS](https://waterdata.usgs.gov/questions-comments/?referrerUrl=https://waterdata.usgs.gov/provisional-data-statement/).\n\n**For First-Time Users (welcome!):**\n1. Each API endpoint is grouped by tags and listed in the sections below\n2. Click on an endpoint to expand it and see detailed information\n3. Parameters required for each endpoint are described in the expanded view\n4. Click the 'Try it out' button to test an endpoint\n5. Fill in any required parameters and click 'Execute' to see the response\n6. The response section will show the API result and response code\n\n","version":"1.0.0"},"servers":[{"url":"/rtfi-api","description":"Production server"}],"paths":{"/":{"get":{"summary":"Read Root","description":"Returns a message confirming that the API is running.","operationId":"read_root__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/referencepoints":{"get":{"tags":["Reference Points"],"summary":"Get Reference Points","description":"Returns a paginated list of Reference Points based on the specified page and limit.","operationId":"get_reference_points_referencepoints_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The page number to retrieve (starting from 1).","default":1,"title":"Page"},"description":"The page number to retrieve (starting from 1)."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":500,"minimum":1,"description":"The maximum number of items to return per page (max 100).","default":10,"title":"Limit"},"description":"The maximum number of items to return per page (max 100)."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ReferencePointModel"},"title":"Response Get Reference Points Referencepoints Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/referencepoints/count":{"get":{"tags":["Counts"],"summary":"Get Referencepoint Count","description":"Returns the total count of reference points in the database.\n\nThis endpoint provides a simple way to get the total number of reference points without \nretrieving all the data.","operationId":"get_referencepoint_count_referencepoints_count_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","title":"Response Get Referencepoint Count Referencepoints Count Get"}}}}}}},"/referencepoints/count/totals-by-state":{"get":{"tags":["Counts"],"summary":"Get Referencepoint Count By State","description":"Returns the count of reference points grouped by state.\n\nThis endpoint provides the total number of reference points for each state,\nincluding the state ID, name, and abbreviation for easy reference.","operationId":"get_referencepoint_count_by_state_referencepoints_count_totals_by_state_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/StateCountModel"},"type":"array","title":"Response Get Referencepoint Count By State Referencepoints Count Totals By State Get"}}}}}}},"/referencepoints/count/state/{state_abbreviation}":{"get":{"tags":["Counts"],"summary":"Get Referencepoint Count By State Abbreviation","description":"Returns the count of reference points for a specific state by abbreviation.\n\nThis endpoint provides the total number of reference points for a single state,\nspecified by its two-letter abbreviation (e.g., 'CA' for California).","operationId":"get_referencepoint_count_by_state_abbreviation_referencepoints_count_state__state_abbreviation__get","parameters":[{"name":"state_abbreviation","in":"path","required":true,"schema":{"type":"string","description":"The two-letter state abbreviation (e.g., 'CA', 'TX').","title":"State Abbreviation"},"description":"The two-letter state abbreviation (e.g., 'CA', 'TX')."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StateCountModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/referencepoints/flooding":{"get":{"tags":["Reference Points"],"summary":"Get Flooding Referencepoints","description":"Returns currently flooding reference points. Reference points are checked for flooding status every 30 minutes. If the `gage_height` is greater than the `rp_elevation`, then the `is_flooding` is set to `true`.\n\nExample JavaScript usage with the Fetch API:\n```javascript\nconst rtfi_flooding_url = 'https://rtfi.wim.usgs.gov/referencepoints/flooding';\n\nfetch(rtfi_flooding_url,)\n    .then((response) => response.json())\n    .then((data) => {\n        // Do something with the data\n        console.log(data);\n    })\n    .catch(error => {\n    // Do something with the error\n    console.log(error);\n    });\n\n```","operationId":"get_flooding_referencepoints_referencepoints_flooding_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/ReferencePointModel"},"type":"array","title":"Response Get Flooding Referencepoints Referencepoints Flooding Get"}}}}}}},"/referencepoints/inactive":{"get":{"tags":["Reference Points"],"summary":"Get Inactive Referencepoints","description":"Returns all inactive reference points where `active` is set to false.","operationId":"get_inactive_referencepoints_referencepoints_inactive_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/ReferencePointModel"},"type":"array","title":"Response Get Inactive Referencepoints Referencepoints Inactive Get"}}}}}}},"/referencepoints/geojson":{"get":{"tags":["Reference Points"],"summary":"Get Reference Points Geojson","description":"Returns all reference points as a GeoJSON FeatureCollection.\n\nNo pagination — returns the complete dataset for use with GIS tools\n(ArcGIS Online, QGIS, Leaflet, MapLibre, etc.).\nResponse uses `application/geo+json` media type per RFC 7946.","operationId":"get_reference_points_geojson_referencepoints_geojson_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReferencePointFeatureCollection"}},"application/geo+json":{}}}}}},"/referencepoints/flooding/geojson":{"get":{"tags":["Reference Points"],"summary":"Get Flooding Reference Points Geojson","description":"Returns currently flooding reference points as a GeoJSON FeatureCollection.\n\nNo pagination — returns the complete dataset for use with GIS tools\n(ArcGIS Online, QGIS, Leaflet, MapLibre, etc.).\nResponse uses `application/geo+json` media type per RFC 7946.","operationId":"get_flooding_reference_points_geojson_referencepoints_flooding_geojson_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReferencePointFeatureCollection"}},"application/geo+json":{}}}}}},"/referencepoints/{id}":{"get":{"tags":["Reference Points"],"summary":"Get Referencepoint By Id","description":"Returns Reference Point by `id`.","operationId":"get_referencepoint_by_id_referencepoints__id__get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","description":"The unique identifier for the reference point.","title":"Id"},"description":"The unique identifier for the reference point."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReferencePointModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/referencepoints/state/{state_id}":{"get":{"tags":["Reference Points"],"summary":"Get Referencepoint By State Id","description":"Returns Reference Points by State ID. You can retrieve the `id` for a state via the [Get States endpoint](#/States/get_states_states_get).","operationId":"get_referencepoint_by_state_id_referencepoints_state__state_id__get","parameters":[{"name":"state_id","in":"path","required":true,"schema":{"type":"integer","description":"The unique identifier for the state.","title":"State Id"},"description":"The unique identifier for the state."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ReferencePointModel"},"title":"Response Get Referencepoint By State Id Referencepoints State  State Id  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/referencepoints/nwis/{nwis_id}":{"get":{"tags":["Reference Points"],"summary":"Get Referencepoint By Nwis Id","description":"Returns Reference Point by `nwis_id`.\n\nAn `nwis_id` is a unique identifier for a streamgage in the National Water Information System (NWIS), commonly referred to as a USGS gage ID.","operationId":"get_referencepoint_by_nwis_id_referencepoints_nwis__nwis_id__get","parameters":[{"name":"nwis_id","in":"path","required":true,"schema":{"type":"string","description":"The unique identifier for the NWIS site.","title":"Nwis Id"},"description":"The unique identifier for the NWIS site."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ReferencePointModel"},"title":"Response Get Referencepoint By Nwis Id Referencepoints Nwis  Nwis Id  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/referencepoints/nws/{nws_id}":{"get":{"tags":["Reference Points"],"summary":"Get Referencepoints By Nws Id","description":"Returns Reference Points by `nws_id`\n\nAn `nws_id` is a National Weather Service (NWS) unique identifier for a flood forecast site. Not all USGS gage locations have an `nws_id` associated with them.","operationId":"get_referencepoints_by_nws_id_referencepoints_nws__nws_id__get","parameters":[{"name":"nws_id","in":"path","required":true,"schema":{"type":"string","description":"The unique identifier for the (National Weather Service) NWS site.","title":"Nws Id"},"description":"The unique identifier for the (National Weather Service) NWS site."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ReferencePointModel"},"title":"Response Get Referencepoints By Nws Id Referencepoints Nws  Nws Id  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/counties":{"get":{"tags":["Counties"],"summary":"Get Counties","description":"Returns a paginated list of Counties based on the specified page and limit.","operationId":"get_counties_counties_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The page number to retrieve.","default":1,"title":"Page"},"description":"The page number to retrieve."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The number of counties to return per page.","default":10,"title":"Limit"},"description":"The number of counties to return per page."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CountyModel"},"title":"Response Get Counties Counties Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/counties/state/{state_id}":{"get":{"tags":["Counties"],"summary":"Get Counties By State Id","description":"Returns Counties by `state_id`. You can retrieve the `id` for a state via the [Get States endpoint](#/States/get_states_states_get).","operationId":"get_counties_by_state_id_counties_state__state_id__get","parameters":[{"name":"state_id","in":"path","required":true,"schema":{"type":"integer","description":"The unique identifier for the state.","title":"State Id"},"description":"The unique identifier for the state."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CountyModel"},"title":"Response Get Counties By State Id Counties State  State Id  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/states":{"get":{"tags":["States"],"summary":"Get States","description":"Returns a paginated list of States based on the specified page and limit.","operationId":"get_states_states_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The page number to retrieve.","default":1,"title":"Page"},"description":"The page number to retrieve."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The number of states to return per page.","default":10,"title":"Limit"},"description":"The number of states to return per page."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StateModel"},"title":"Response Get States States Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/states/{state_id}":{"get":{"tags":["States"],"summary":"Get State By State Id","description":"Returns a State by `state_id`.","operationId":"get_state_by_state_id_states__state_id__get","parameters":[{"name":"state_id","in":"path","required":true,"schema":{"type":"integer","description":"The unique identifier for the state.","title":"State Id"},"description":"The unique identifier for the state."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StateModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/nws_usgs":{"get":{"tags":["NWS USGS Crosswalk"],"summary":"Get Nws Usgs Crosswalk","description":"Returns a paginated list of National Weather Serivce (NWS) / USGS Sites based on the specified page and limit.","operationId":"get_nws_usgs_crosswalk_nws_usgs_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The page number to retrieve.","default":1,"title":"Page"},"description":"The page number to retrieve."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The number of NWS USGS records to return per page.","default":10,"title":"Limit"},"description":"The number of NWS USGS records to return per page."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NWSModel"},"title":"Response Get Nws Usgs Crosswalk Nws Usgs Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/nws_usgs/state/{state_abbreviation}":{"get":{"tags":["NWS USGS Crosswalk"],"summary":"Get Nws Usgs Crosswalk By State Abbreviation","description":"Returns a paginated list of National Weather Service (NWS) / USGS Sites for a specific state by abbreviation.\n\nThis endpoint filters the NWS USGS crosswalk data by the two-letter state abbreviation\n(e.g., 'CA' for California, 'TX' for Texas).","operationId":"get_nws_usgs_crosswalk_by_state_abbreviation_nws_usgs_state__state_abbreviation__get","parameters":[{"name":"state_abbreviation","in":"path","required":true,"schema":{"type":"string","description":"The two-letter state abbreviation (e.g., 'CA', 'TX').","title":"State Abbreviation"},"description":"The two-letter state abbreviation (e.g., 'CA', 'TX')."},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The page number to retrieve.","default":1,"title":"Page"},"description":"The page number to retrieve."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","minimum":1,"description":"The number of NWS USGS records to return per page.","default":10,"title":"Limit"},"description":"The number of NWS USGS records to return per page."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NWSModel"},"title":"Response Get Nws Usgs Crosswalk By State Abbreviation Nws Usgs State  State Abbreviation  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"CountyModel":{"properties":{"id":{"type":"integer","title":"Id","description":"A unique identifier for the county."},"name":{"type":"string","title":"Name","description":"The name of the county."},"state_fip":{"type":"integer","title":"State Fip","description":"The Federal Information Processing Standards (FIPS) code for the state."},"county_fip":{"type":"integer","title":"County Fip","description":"The FIPS code for the county."},"state_id":{"type":"integer","title":"State Id","description":"The identifier for the state to which this county belongs."}},"type":"object","required":["id","name","state_fip","county_fip","state_id"],"title":"CountyModel"},"GeoJsonPoint":{"properties":{"type":{"type":"string","const":"Point","title":"Type","default":"Point"},"coordinates":{"prefixItems":[{"type":"number"},{"type":"number"}],"type":"array","maxItems":2,"minItems":2,"title":"Coordinates"}},"type":"object","required":["coordinates"],"title":"GeoJsonPoint"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"NWSModel":{"properties":{"id":{"type":"integer","title":"Id","description":"A unique identifier for the NWS record."},"nwsli_id":{"type":"string","title":"Nwsli Id","description":"The NWS Location Identifier."},"usgs_station_num":{"type":"string","title":"Usgs Station Num","description":"The USGS station number associated with the NWS record."},"location_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Location Name","description":"The name of the location for the NWS station."},"goes_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Goes Id","description":"The GOES identifier for the satellite associated with the location."},"state_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"State Id","description":"The unique identifier for the state where the NWS station is located."},"state_abbr":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State Abbr","description":"The two-letter state abbreviation where the NWS station is located."}},"type":"object","required":["id","nwsli_id","usgs_station_num"],"title":"NWSModel"},"ReferencePointFeature":{"properties":{"type":{"type":"string","const":"Feature","title":"Type","default":"Feature"},"geometry":{"$ref":"#/components/schemas/GeoJsonPoint"},"properties":{"$ref":"#/components/schemas/ReferencePointProperties"}},"type":"object","required":["geometry","properties"],"title":"ReferencePointFeature"},"ReferencePointFeatureCollection":{"properties":{"type":{"type":"string","const":"FeatureCollection","title":"Type","default":"FeatureCollection"},"features":{"items":{"$ref":"#/components/schemas/ReferencePointFeature"},"type":"array","title":"Features"}},"type":"object","required":["features"],"title":"ReferencePointFeatureCollection"},"ReferencePointModel":{"properties":{"id":{"type":"integer","title":"Id","description":"A unique identifier for the reference point."},"site_name":{"type":"string","title":"Site Name","description":"The name of the monitoring site."},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"A brief description of the site."},"nws_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Nws Id","description":"The National Weather Service identifier for the site."},"rp_name":{"type":"string","title":"Rp Name","description":"The name of the responsible party for the site."},"state_id":{"type":"integer","title":"State Id","description":"The identifier for the state where the site is located."},"county_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"County Id","description":"The identifier for the county where the site is located."},"latitude":{"type":"number","title":"Latitude","description":"The latitude coordinate of the site."},"longitude":{"type":"number","title":"Longitude","description":"The longitude coordinate of the site."},"nwis_id":{"type":"string","title":"Nwis Id","description":"The National Water Information System identifier for the site."},"rp_elevation":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rp Elevation","description":"The elevation of the responsible party's reference point at the site, in meters."},"unit":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit","description":"The unit of measurement for the gage height (e.g., feet, meters)."},"gage_height":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Gage Height","description":"The current height of the water gage at the site, in the specified unit."},"is_flooding":{"type":"boolean","title":"Is Flooding","description":"A flag indicating whether the site is currently experiencing flooding conditions."},"active":{"type":"boolean","title":"Active","description":"A flag indicating whether the gage associated with the reference point is active."}},"type":"object","required":["id","site_name","rp_name","state_id","latitude","longitude","nwis_id","is_flooding","active"],"title":"ReferencePointModel"},"ReferencePointProperties":{"properties":{"id":{"type":"integer","title":"Id","description":"A unique identifier for the reference point."},"site_name":{"type":"string","title":"Site Name","description":"The name of the monitoring site."},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"A brief description of the site."},"nws_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Nws Id","description":"The National Weather Service identifier."},"nwis_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Nwis Id","description":"The NWIS identifier (USGS gage ID)."},"rp_name":{"type":"string","title":"Rp Name","description":"The name of the reference point."},"rp_id":{"type":"string","title":"Rp Id","description":"The reference point identifier."},"rp_elevation":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rp Elevation","description":"The elevation of the reference point, in meters."},"unit":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Unit","description":"The unit of measurement for gage height."},"gage_height":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Gage Height","description":"The current gage height."},"is_flooding":{"type":"boolean","title":"Is Flooding","description":"Whether the site is currently flooding."},"active":{"type":"boolean","title":"Active","description":"Whether the gage is active."},"state_id":{"type":"integer","title":"State Id","description":"The state identifier."},"county_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"County Id","description":"The county identifier."}},"type":"object","required":["id","site_name","rp_name","rp_id","is_flooding","active","state_id"],"title":"ReferencePointProperties"},"StateCountModel":{"properties":{"state_id":{"type":"integer","title":"State Id","description":"The unique identifier for the state."},"state_name":{"type":"string","title":"State Name","description":"The full name of the state."},"state_abbreviation":{"type":"string","title":"State Abbreviation","description":"The two-letter abbreviation for the state."},"reference_point_count":{"type":"integer","title":"Reference Point Count","description":"The total number of reference points in this state."}},"type":"object","required":["state_id","state_name","state_abbreviation","reference_point_count"],"title":"StateCountModel"},"StateModel":{"properties":{"id":{"type":"integer","title":"Id","description":"A unique identifier for the state."},"name":{"type":"string","title":"Name","description":"The full name of the state."},"abbreviation":{"type":"string","title":"Abbreviation","description":"The abbreviation for the state (e.g., 'CA' for California)."}},"type":"object","required":["id","name","abbreviation"],"title":"StateModel"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}}},"tags":[{"name":"Reference Points","description":"Endpoints for accessing flood impact reference points, including active, inactive, and currently flooding locations. Reference points are surveyed locations that may be vulnerable to flooding."},{"name":"Counties","description":"Endpoints for accessing county information, including lookup by state ID."},{"name":"States","description":"Endpoints for accessing state information and retrieving states by ID."},{"name":"NWS USGS Crosswalk","description":"Endpoints for accessing cross-referenced information between National Weather Service (NWS) and USGS streamgage sites."},{"name":"Counts","description":"Endpoints for accessing statistical counts and aggregated data across different resource types."}]}