Flood Damages

Also known as Flood Consequences

Flood damages are referenced as consequences in the First Street API.

Input Fields

To run model calculations on Flood Damages, the input of PropertyFloodConsequencesInput should be provided to the flood.consequences query. This input represents various Property Building Values for the property.

If inputs are not provided, default values are used. These default values can be queried through property.building

PropertyFloodConsequencesInput

input PropertyFloodConsequencesInput {
  # The general land use code
  # Example: 1 (residential)
  landuseCodeId: Int

  # The predominant construction material of the building
  constructionId: String

  # Number of stories for the Property
  stories: Int

  # Floor size in square feet
  buildingSqft: Int

  # Whether or not the property has a basement.
  basement: Boolean

  # Number of units in Property
  units: Int

  # The height in centimeters associated with the floor elevation for the building.
  foundationHeight: Int

  # The depth in cm of the flood event that the damage should be calculated for. Multiple values accepted, delineated with a comma.
  # Maximum number of depths: 35, each depth is a whole number (non-negative integer) under 1000.
  #
  # Example: *30, 45*
  # Default: *5,15,30*
  depths: [Int64!]
}

Example Request Header

{ 
    "fsid": 1202672029, 
    "PropertyWindConsequencesInput": { 
        "landuseCodeId": 1, 
        "stories": 2, 
        "roofCoverId": "0", 
        "designStandard": "HIGH", 
        "buildingOrientation": "N", 
        "yearBuilt": 1981, 
        "units": 1, 
        "buildingSqft": 4630 
    } 
}

Last updated