Include incapacitated adult care expenses in state TANF dependent care deductions#8982
Conversation
…e deductions Adds the person-level care_expenses input (care for a disabled or incapacitated adult) to 21 state TANF-family cash assistance programs whose regulations cover adult care but which previously only counted childcare_expenses: AK ATAP, AL FA, AZ CA, DC TANF, DE TANF, GA TANF, HI TANF, IL TANF, KY K-TAP, MA TAFDC, MA EAEDC, MD TCA, ME TANF, MN MFIP, MO TA, MT TANF, NH FANF, OK TANF, RI Works, TX TANF, VA TANF, VT Reach Up, and WV Works. Where the regulation covers incapacitated adults in the per-person cap, they are added to the cap population. Every program was verified against its statute/policy manual before editing. NM Works, IL AABD, and TN Families First are verified child-only (or unclear) and left unchanged. Also fixes dead or wrong reference URLs for DE (DSSM 4004.2), MD (COMAR portal), VA, and WV. Part of PolicyEngine#8811. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ated adults KY and MO cap the dependent care disregard on an age schedule that zeroes out above age 13 (KY) / 18 (MO), reflecting children aging out of care. Evaluating that schedule at an incapacitated adult's actual age returned a $0 cap, dropping their care expenses. Both regulations give the incapacitated adult the standard age-two-or-older rate ($175), so evaluate the schedule at the age-two threshold for them. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
… dependent care deduction Mont. Admin. r. 37.78.406(2)(c) covers care for each working member's minor child or incapacitated adult with no dependency requirement, so an incapacitated spouse now qualifies. Add adult-side edge tests: above-cap adult care, non-incapacitated adult, and combined child plus adult care. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…into tanf-adult-care-expenses
…ing tests
- VA: switch the adult care mask from is_disabled to
is_incapable_of_self_care per Manual 305.3 item 5 ("Incapacitated
Adult/Child Care Disregard"), and sweep the VA unit and integration
tests accordingly.
- Add a negative population-filter test to every capped program (adult
without the qualifying condition adds nothing to the cap), including
incapacitated non-parent cases for AK/NH and a non-dependent case
for AZ.
- KY/MO: add above-cap adult cases pinning the age-2+ $175 tier that
the cap_age remap targets.
- AL/VT/WV: document that the incapacity/disability flags in the new
test cases describe the legal scenario while the formulas pool
care_expenses without a filter, symmetric with the childcare side.
- AZ: drop the inert incapacity flag from the dependent-adult case.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Program review (automated multi-agent)ScopeReviewed all 23 changed variable files, 24 test files, and the changelog fragment in PR #8982 (incapacitated adult care expenses in state TANF dependent care deductions, 22 states). Four regulatory auditors verified every state against primary sources (statutes, admin codes, and 6 PDF manuals), plus a reference validator, code-pattern validator, test-coverage analyst, and two follow-up verifiers. CI is fully green (all suites + changelog check). Regulatory verification — 22/22 states verified
Critical (must fix)None. Should address
Suggestions
Investigated and cleared
Validation summary
Review severity: COMMENTNo blocking issues; the should-address items are PR-description accuracy (MT), one statutory-footing confirmation (IL), and test hardening. Automated review: 4 regulatory auditors (primary-source verification incl. 6 PDF manuals), reference validator, code-pattern validator, test-coverage analyst, plus follow-up verifiers. Read-only; no code changed. |
daphnehanse11
left a comment
There was a problem hiding this comment.
Approving based on the multi-agent review above: 22/22 states verified against primary sources with no regulatory or value mismatches, references confirmed, code patterns and period handling clean, CI green. Remaining items (PR-description accuracy for MT, test hardening) are non-blocking.
Summary
Adds the person-level
care_expensesinput (care for a disabled/incapacitated adult) to the dependent care deductions of 21 state TANF-family cash assistance programs (23 variables) that previously only countedchildcare_expenses. Where the regulation includes incapacitated adults in the per-person cap, they are added to the cap population; where the cap side already included them (TX, VA) only the expense side changes. MT's cap side previously also required the incapacitated adult to be a tax dependent — Mont. Admin. r. 37.78.406(2)(c) imposes no dependency requirement, so this PR drops it (an incapacitated spouse now qualifies; test Case 7 flips 0 → $200).Closes #8811 (together with #8980 for SNAP and #8981 for TX FPP / HI CDCC / MT tax deduction).
Verification
Every program was verified against its statute or policy manual (verbatim quotes checked against primary sources) before editing:
Verified child-only — deliberately unchanged
Modeling notes
is_adult & is_incapable_of_self_care(oris_disabledwhere the state's operative word is "disabled": HI, MN); "incapacitated parent" (AK, NH) asis_tax_unit_head_or_spouse & is_incapable_of_self_care. VA's manual keys on incapacity ("Incapacitated Adult/Child Care Disregard"), so its pre-existingis_disabledmask was switched tois_incapable_of_self_care.dsd.maryland.govis dead), VA and WV point at the current manuals (old links 404).Impact
care_expensesdefaults to 0, so all existing tests, partner contract tests, and microsimulation results are unchanged unless the input is supplied.Test plan
cap_ageremap🤖 Generated with Claude Code