Missouri MHABD: SGA screen on the 209(b) pathway and individual/couple income standard - #9379
Draft
hua7450 wants to merge 1 commit into
Draft
Missouri MHABD: SGA screen on the 209(b) pathway and individual/couple income standard#9379hua7450 wants to merge 1 commit into
hua7450 wants to merge 1 commit into
Conversation
Deny the 209(b) SSI-recipient Medicaid pathway to non-blind, non-aged earners above the substantial gainful activity threshold per Missouri DSS MHABD Manual 0840.010.35, behind a state-level applies_sga_screen parameter (Missouri only). Test the Missouri Appendix J standard against the one-person or couple poverty guideline instead of the tax unit's, so a disabled child in a family faces the individual standard. Add Missouri parental-deeming cases covering the stepparent exclusion and the equal split between two disabled children. Fixes PolicyEngine#9316 Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #9379 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 3 2 -1
Lines 46 44 -2
=========================================
- Hits 46 44 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two Missouri MHABD fixes raised by MyFriendBen, plus regression tests for the MHDC parental-deeming behavior they questioned.
Fixes #9316
1. SGA screen on the 209(b) SSI-recipient pathway
Missouri denies spend-down and non-spend-down MHABD coverage when earnings exceed the substantial gainful activity threshold (DSS MHABD Manual § 0840.010.35).
is_209b_ssi_recipient_for_medicaidaccepts reported SSI receipt at face value, so an asserted recipient with $4,685/month in wages was found eligible underSSI_RECIPIENT.gov/hhs/medicaid/eligibility/categories/ssi_recipient/section_209b/applies_sga_screen.yaml, state breakdown, Missouritrue, every other statefalse(only Missouri's manual is verified).applies_sga_screen & ssi_engaged_in_sga & ~is_ssi_aged. The screen sits under Missouri's permanent-and-total-disability chapter, so the blind (already exempt insidessi_engaged_in_sga) and the aged are not screened.2. Income standard uses the individual or couple guideline, not the tax unit's
Appendix J publishes MHABD standards for an individual and for a couple ($1,131 / $1,533 aged or disabled, $1,330 / $1,804 blind in 2026).
medicaid_optional_senior_or_disabled_income_limitcomputed Missouri's limit fromtax_unit_fpg, so a disabled child in a family of four was tested against 85% of the four-person guideline ($2,338/month) instead of $1,131. Missouri now uses the one-person guideline, or the couple guideline for a head or spouse of a joint unit. Units of one or two people are unchanged.Existing Missouri tests that injected
tax_unit_fpg: 15_000/20_000are recomputed from the real 2025 guidelines ($15,650 one person, $21,150 couple). One 209(b) spenddown case has its medical expenses raised so it still lands inside the 2026 individual standard.3. MHDC parental deeming: tests only
MyFriendBen reported that stepparent and two-disabled-child households returned the children ineligible. Reproduced locally: with
meets_ssi_disability_criteriaset on the child, the model already deems only from adults flagged as parents (so a stepparent is not a deeming source, matching DSS MHABD Manual § 0805.020.15) and splits deemed income equally between applying disabled children. The reported ineligibility comes from sendingis_disabledalone, which no longer feeds SSI disability. Two Missouri cases lock in the stepparent exclusion and the equal split with hand-computed amounts.Test plan
is_209b_ssi_recipient_for_medicaid,is_209b_ssi_recipient_income_eligible_for_medicaid,medicaid_optional_senior_or_disabled_income_limit,is_optional_senior_or_disabled_income_eligible, parental deeming)🤖 Generated with Claude Code