{
  "decision_goal": "Should the homeowner schedule a Rubicon flood barrier assessment?",
  "updated_at": "2026-05-28",
  "logic_inputs": [
    "opening_type",
    "previous_flooding",
    "storm_exposure",
    "threshold_condition",
    "sandbag_labor_tolerance"
  ],
  "decision_rules": [
    {
      "id": "rule-high-risk-opening",
      "if": [
        "previous_flooding=true",
        "threshold_condition=low"
      ],
      "then": "recommend_assessment_immediately"
    },
    {
      "id": "rule-sandbag-burden",
      "if": [
        "sandbag_labor_tolerance=low",
        "storm_exposure=high"
      ],
      "then": "recommend_reusable_barrier_path"
    },
    {
      "id": "rule-diagnostics-first",
      "if": [
        "opening_type_unknown=true"
      ],
      "then": "run_visual_fit_check"
    },
    {
      "id": "rule-drainage-first",
      "if": [
        "primary_entry=drains_or_slab"
      ],
      "then": "recommend_drainage_review_before_barrier"
    }
  ]
}
