Fire Damages

Also known as Fire Consequences

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

Input Fields

To run model calculations on Flood Damages, the input of PropertyFireConsequencesInput should be provided to the fire.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

PropertyFireConsequencesInput

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

  # The presence of defensible space around this property.
  defensibleSpace: Boolean

  # The type of roofing material.
  roofCoverId: String

  # 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 abides by the Fireproofing building code
  # True => has fire-proofing
  fireCode: Boolean

  # Replacement cost of the building in dollars.
  pricePerSqft: 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