Wildfire Burn Probability

This is a sample query representing fields used to request fire probability specific data for a property. Specific field documentation is available through the schema explorer within the Playground.

query {
  property(fsid: 10000002) {
    fire {
      probability {
        burn {
          relativeYear
          percent
          emberPercent
          flamePercent
        }
        cumulative {
          relativeYear
          yAxisHeight
          point
          emberYAxisHeight
          emberPoint
          flameYAxisHeight
          flamePoint
        }
        damage {
          conditional {
            relativeYear
            flameLossConditional
            flameTimeConditional
            flameLoss
            flameTime
            emberLoss
            emberTime
          }
        }
      }
    }
  }
}

Last updated