Implement Louisiana State Supplementary Payment (SSP)#8172
Merged
hua7450 merged 7 commits intoPolicyEngine:mainfrom Apr 28, 2026
Merged
Implement Louisiana State Supplementary Payment (SSP)#8172hua7450 merged 7 commits intoPolicyEngine:mainfrom
hua7450 merged 7 commits intoPolicyEngine:mainfrom
Conversation
Closes PolicyEngine#8171 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 #8172 +/- ##
==========================================
+ Coverage 85.71% 86.04% +0.33%
==========================================
Files 3 3
Lines 42 43 +1
Branches 2 2
==========================================
+ Hits 36 37 +1
Misses 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 Louisiana's Optional State Supplement (OSS) — a state-administered SSI supplement paid to aged, blind, and disabled persons (including children) residing in non-psychiatric Medicaid long-term care facilities.
Closes #8171
Regulatory Authority
Program Overview
Eligibility
is_ssi_eligible(categorical + resource + immigration/residency, excludes income test so non-SSI LTC residents in the $30–$38 countable-income band are still reachable)ssi_federal_living_arrangement == MEDICAL_TREATMENT_FACILITY(same enum that triggers the $30 institutional FBR)defined_for = StateCode.LANote on facility scope: LA law (J-300, H-831.6) limits OSS to non-psychiatric Medicaid LTC residents (NF or ICF/IID), but PolicyEngine doesn't distinguish facility type below the federal
MEDICAL_TREATMENT_FACILITYenum. We treat the federal enum as equivalent to the LA scope.Benefit Amounts (LDH Z-700 / SPA 25-0013)
Couple treatment: Per-person rate (couple = 2 × individual; SSA 2011 Table 1 shows $16/$76 couple = 2 × $8/$38)
COLA: None — flat amount, last increase July 2025 via SPA 25-0013
Benefit Calculation
Formula (per LDH J-300, SSA 2011 LA report):
ssi), not the institutional FBR constant — this correctly handles partial-SSI recipients whose federal payment is reduced by countable income, and reaches non-SSI LTC residents whose countable income sits between the FBR ($30) and the PNA ($38 / $45).Requirements Coverage
12 of 12 in-scope requirements implemented; 7 NOT-MODELED exclusions documented.
Covered (11 + registry):
defined_for = StateCode.LAis_ssi_eligiblessi_federal_living_arrangement == MEDICAL_TREATMENT_FACILITYis_ssi_eligiblessi_countable_incomeNOT-MODELED (documented): REQ-004, 005, 006, 007, 008 (narrow Medicaid-track exclusions); REQ-015, 016 (cents-level rounding rule).
Not Modeled (by design)
Files
Historical Notes
Verification TODO
Test plan