Implement Delaware State Supplementary Payment (SSP)#7883
Open
hua7450 wants to merge 3 commits intoPolicyEngine:mainfrom
Open
Implement Delaware State Supplementary Payment (SSP)#7883hua7450 wants to merge 3 commits intoPolicyEngine:mainfrom
hua7450 wants to merge 3 commits intoPolicyEngine:mainfrom
Conversation
Closes PolicyEngine#7882 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 #7883 +/- ##
============================================
+ Coverage 71.46% 100.00% +28.53%
============================================
Files 4099 3 -4096
Lines 59132 49 -59083
Branches 288 0 -288
============================================
- Hits 42257 49 -42208
+ Misses 16869 0 -16869
+ Partials 6 0 -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:
|
When one spouse is SSP-eligible and the other is not, the eligible spouse now correctly receives the individual rate ($140) instead of half the couple rate. Uses both_eligible check before entering couple path, matching SSI statute (42 USC 1382c(b)). Adds test case 8 for asymmetric couple eligibility. 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 Delaware's State Supplementary Payment (SSP) -- a federally-administered optional supplement for SSI recipients residing in certified adult residential care facilities, with frozen monthly amounts of $140 (individual) and $448 (couple).
Closes #7882
Regulatory Authority
Program Overview
Eligibility
is_ssi_eligibleage >= age_thresholdparameterdefined_for = StateCode.DEde_ssp_living_arrangementenum (RESIDENTIAL_CARE)ssi_countable_incomeis_ssi_eligible->meets_ssi_resource_testBenefit Amounts (SSA POMS SI PHI01415.008; SI 01415.058)
Couple treatment: $448 is a combined total for the couple; divided by 2 for per-person attribution in PolicyEngine's person-level model. Uses
both_eligiblecheck — if only one spouse is SSP-eligible, they receive the individual rate ($140) per 42 USC §1382c(b)COLA: Frozen since at least 1992 -- confirmed unchanged across all POMS annual tables from 1992 through January 2026
Payment calculation: State sets a total payment standard (FBR + supplement). Federal SSI and countable income are deducted. Remainder is the state supplement. Implemented using the
uncapped_ssireduction pattern:max(0, supplement - max(0, -uncapped_ssi)).Not Modeled (by design)
Files
Verification TODO
Test plan