Implement Montana State Supplementary Payment (SSP)#8233
Draft
hua7450 wants to merge 3 commits intoPolicyEngine:mainfrom
Draft
Implement Montana State Supplementary Payment (SSP)#8233hua7450 wants to merge 3 commits intoPolicyEngine:mainfrom
hua7450 wants to merge 3 commits intoPolicyEngine:mainfrom
Conversation
Closes PolicyEngine#8232 Implements Montana's Optional State Supplementation under ARM 37.43.101–104 and MCA 52-1-104. Covers aged/blind/disabled SSI recipients in qualifying living arrangements (personal care / group home / community home, foster care, transitional living). Rates frozen since 1989. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8233 +/- ##
===========================================
- Coverage 100.00% 93.68% -6.32%
===========================================
Files 12 6 -6
Lines 173 95 -78
Branches 4 2 -2
===========================================
- Hits 173 89 -84
- Misses 0 6 +6
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 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
Implements Montana's State Supplementary Payment (SSP) — supplements federal Supplemental Security Income (SSI) for aged, blind, and disabled recipients living in qualifying personal-care, foster-care, and transitional-living arrangements (rates frozen since 1989).
Closes #8232
Regulatory Authority
Program Overview
Eligibility
defined_for = StateCode.MTuncapped_ssi > 0(already implies categorical/resource/immigration eligibility plus income test)mt_ssp_payment_category != NONEuncapped_ssi > 0uncapped_ssiDeparture from default SSP convention: Montana uses
uncapped_ssi > 0rather thanssi > 0because ARM 37.43.102(2)(a) explicitly extends eligibility to people "who would be eligible to receive federal supplemental security income except for the amount of their income" (Group 2). Gating onssi > 0would incorrectly drop Group 2 recipients.Benefit Amounts (SSA POMS SI DEN01415.010; ARM 37.43.104; SSA 2011 report Montana Table 1)
Source note on couple rates: The couple amounts ($5 uniform bonus over 2× the individual rate) appear in SSA POMS SI DEN01415.010 and the SSA 2011 State Assistance Programs report (Montana Table 1) only — they are NOT codified in ARM 37.43.104. Both administrative sources are cited in
parameters/.../amount/couple.yaml.Couple treatment: Separate couple rate (not 2× individual). Stored as couple TOTAL and divided by 2 per spouse following the Maine SSP pattern. Couple gate fires only when (a)
ssi_claim_is_joint, (b) both spouses aremt_ssp_eligible, (c) both share the samemt_ssp_payment_category, and (d) the marital unit has size 2. When the gate fails, each spouse falls back to the individual rate.COLA: Frozen since 1989. ARM 37.43.104 was last amended in 1988; the same rates appear in the SSA 2011 report and 2024–2025 SSA factsheets. A single
1989-01-01parameter entry covers all modeled periods.Not Modeled (by design)
mt_ssp_eligible.pydocstringis_ssi_eligible)Files
Plus registry/rollup edits:
policyengine_us/variables/household/income/spm_unit/spm_unit_benefits.py— addedmt_sspto BENEFITS listpolicyengine_us/parameters/gov/household/household_state_benefits.yaml— added- mt_sspunder both2023-01-01:and2024-01-01:blockspolicyengine_us/programs.yaml— added Montana entry underssi_state_supplementstate_implementations(status: complete, variable:mt_ssp, parameter_prefix:gov.states.mt.dphhs.ssp)changelog.d/mt-ssp.added.mdVerification TODO
Test plan