Implement Indiana State Supplementary Payment (SSP)#7887
Open
hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
Open
Implement Indiana State Supplementary Payment (SSP)#7887hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Adds SAPN (Medicaid facility supplement, $22/mo) and RCAP (residential care assistance, per diem rates) for Indiana SSI recipients. Refs PolicyEngine#7886 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7887 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 2 7 +5
Lines 32 108 +76
=========================================
+ Hits 32 108 +76
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:
|
- Change RCAP per diem effective date from 2003-01-01 to 2004-01-01 per POMS - Fix daily-to-monthly conversion: 365/12 instead of 52*7/12 (364/12) - Update all RCAP test expected values accordingly Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…rmula - SAPN eligibility: add uncapped_ssi > 0 check per IC 12-15-32-6.5 (must be SSI recipient, not just categorically eligible) - RCAP per diem: add July 2008 rates ($49.35 licensed, $37 unlicensed) confirmed by Gargano v. Lee Alan Bryant (2012) and FSSA Provider Guide - RCAP formula: remove PNA from state standard — per diem × 365/12 IS the full standard; PNA is carved out, not added on top - Remove non-code research artifacts (lessons/, sources/) - Update all test values to match corrected formula Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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 Indiana's State Supplementary Payment (SSP) -- two sub-programs: SAPN (Supplemental Assistance for Personal Needs) for Medicaid facility residents, and RCAP (Residential Care Assistance Program) for licensed residential care facility residents.
Closes #7886
Regulatory Authority
Program Overview
Eligibility
is_ssi_eligibleuncapped_ssi > 0is_medicaid_eligiblein_ssp_living_arrangement == MEDICAID_FACILITYage >= age_thresholdparameter (18)is_ssi_eligibleuncapped_ssi > 0checkin_ssp_living_arrangement == LICENSED_RESIDENTIAL | UNLICENSED_RESIDENTIALage >= age_thresholdparameter (18)defined_for = StateCode.INssi_claim_is_jointBenefit Amounts
SAPN -- Supplemental Assistance for Personal Needs (SSA POMS SI CHI01401.001; FSSA Chapter 5000)
Couple treatment: $22 per eligible person ($44 couple = $22 x 2); uses
ssi_claim_is_jointfor couple detectionCOLA: Frozen since July 2002
RCAP -- Residential Care Assistance Program (455 IAC 1-3-3; Gargano v. Lee Alan Bryant (2012))
RCAP benefit formula:
max(0, per_diem * 365/12 - federal_SSI)max(uncapped_ssi, 0)Note on per diem history: The regulation text on Cornell LII (455 IAC 1-3-3) still shows the 2003 rates ($39.35/$27). The rates were updated administratively in July 2008 per the authority in 455 IAC 1-3-4 (annual review) and IC 12-10-6-1. The regulation was readopted without text amendment in 2009, 2013, and 2019. The $49.35 rate is confirmed by the Indiana Court of Appeals and the FSSA Provider Guide.
COLA: Per diem rates set at $39.35/$27 in Jan 2004, increased to $49.35/$37 in Jul 2008; no changes since
Not Modeled (by design)
is_ssi_eligible(uses federal SSI limits $2,000/$3,000 -- slightly less restrictive)Files
Verification TODO
Test plan