Wind Damages

Also known as Wind Consequences

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

Input Fields

To run model calculations on Wind Damages, the input of PropertyWindConsequencesInput should be provided to the wind.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

PropertyWindConsequencesInput

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

  # Number of stories for the property
  stories: Int

  # The type of roofing material.
  roofCoverId: String

  # The design standard to which the building is built, displayed as text (low, middle, high)
  designStandard: BuildingWindDesignStandard

  # The direction of the largest face of the building. Format as direction (N, NE, E, SE, S, SW, W, NW)
  buildingOrientation: CompassDirection

  # Year when the property has been built
  yearBuilt: Int

  # Number of units in Property
  units: Int

  # Floor size in square feet
  buildingSqft: Int
}

Example Request Header

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

Last updated