Fire Burn

The Fire Burn Damages API provides days to repair (or rebuild) estimates, assuming that a fire reaches the building.

Example Query

The return value of daysToRepairBin is represented in bins. These bins correlate with the index of values returned. The bins are represented in this order: 0-2 feet, 2-4 feet, 4-8 feet, 8-12 feet, 12-20 feet, and 20+ feet of flame lengths.

query PropertyFireConsequencesFlameLength($fsid: Int64!, $PropertyFireConsequencesInput: PropertyFireConsequencesInput) {
  property(fsid: $fsid) {
    fire {
      consequences(input: $PropertyFireConsequencesInput) {
        burn {
          daysToRepairBin
        }
      }
    }
  }
}

Last updated