Washington Paid Family and Medical Leave (WA PFML)
Build a Washington Paid Family and Medical Leave eligibility and maximum benefit calculator. The contribution/premium side already exists in the codebase; this issue covers the worker-facing benefit estimate.
Given a Washington worker's earnings history and a selected leave scenario, the model should return:
wa_pfml_eligible
wa_pfml_weekly_benefit_amount
wa_pfml_max_leave_weeks
wa_pfml
wa_pfml should represent the maximum annual benefit estimate for the selected leave type, not claimed leave paid out to a household.
Inputs in scope
Core inputs:
state_code
weekly_hours_worked
employment_income
wa_pfml_leave_type
Supported leave types:
FAMILY
MEDICAL
COMBINED
MEDICAL_WITH_PREGNANCY_INCAPACITY
COMBINED_WITH_PREGNANCY_INCAPACITY
NONE
Optional accuracy overrides:
wa_pfml_qualifying_period_hours_worked
wa_pfml_average_weekly_wage_override
Rules to model
Eligibility — RCW 50A.15.010
- Worker must have at least
820 hours in the qualifying period.
Weekly benefit — RCW 50A.15.020(5)-(6)
- If AWW is at or below 50% of SAWW: benefit = 90% of AWW.
- If AWW is above 50% of SAWW: benefit = 90% of the first 50% of SAWW + 50% of AWW above that threshold.
- Minimum weekly benefit = $100, or AWW if AWW is below $100.
- Maximum weekly benefit = 90% of SAWW.
- Average weekly wage and weekly benefit are rounded down to the next lower dollar.
Duration — RCW 50A.15.020(3)
- Family leave: 12 weeks
- Medical leave: 12 weeks
- Combined leave: 16 weeks
- Medical leave with pregnancy incapacity: 14 weeks
- Combined leave with pregnancy incapacity: 18 weeks
Current PolicyEngine approximations
- If
wa_pfml_qualifying_period_hours_worked is not provided, eligibility can be approximated from weekly_hours_worked * 52.
- If
wa_pfml_average_weekly_wage_override is not provided, AWW can be approximated as floor(employment_income / 52).
- The model should estimate maximum leave and benefit for a selected leave type; it does not need to infer whether a factual life event qualifies as family or medical leave.
Key sources
Washington Paid Family and Medical Leave (WA PFML)
Build a Washington Paid Family and Medical Leave eligibility and maximum benefit calculator. The contribution/premium side already exists in the codebase; this issue covers the worker-facing benefit estimate.
Given a Washington worker's earnings history and a selected leave scenario, the model should return:
wa_pfml_eligiblewa_pfml_weekly_benefit_amountwa_pfml_max_leave_weekswa_pfmlwa_pfmlshould represent the maximum annual benefit estimate for the selected leave type, not claimed leave paid out to a household.Inputs in scope
Core inputs:
state_codeweekly_hours_workedemployment_incomewa_pfml_leave_typeSupported leave types:
FAMILYMEDICALCOMBINEDMEDICAL_WITH_PREGNANCY_INCAPACITYCOMBINED_WITH_PREGNANCY_INCAPACITYNONEOptional accuracy overrides:
wa_pfml_qualifying_period_hours_workedwa_pfml_average_weekly_wage_overrideRules to model
Eligibility — RCW 50A.15.010
820hours in the qualifying period.Weekly benefit — RCW 50A.15.020(5)-(6)
Duration — RCW 50A.15.020(3)
Current PolicyEngine approximations
wa_pfml_qualifying_period_hours_workedis not provided, eligibility can be approximated fromweekly_hours_worked * 52.wa_pfml_average_weekly_wage_overrideis not provided, AWW can be approximated asfloor(employment_income / 52).Key sources