Implement Nebraska State Supplementary Payment (SSP)#8235
Draft
hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
Draft
Implement Nebraska State Supplementary Payment (SSP)#8235hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
Conversation
…Engine#8234) Implements Aid to the Aged, Blind, or Disabled — Payment, Nebraska's state-administered fill-the-gap supplement to federal SSI. - 6 variables: ne_aabd, ne_aabd_eligible, ne_aabd_standard_of_need, ne_aabd_living_arrangement, ne_aabd_alternate_living_arrangement, ne_aabd_couple_rate_applies - 4 parameters: independent SoN by household size, shelter allowances (single/multiple), 7-value alternate living standard - 3 effective-date tiers: 2015-01-01, 2017-01-01, 2021-01-01 (frozen) - Couple treatment: joint 2-person standard split 50/50 for Independent; alternate-living couples treated as two individuals per SSA 2011 footnote - 34 tests pass (integration + 2 unit test files) - Wired into spm_unit_benefits, household_state_benefits, programs.yaml
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 #8235 +/- ##
===========================================
- Coverage 100.00% 94.69% -5.31%
===========================================
Files 12 7 -5
Lines 173 113 -60
Branches 4 2 -2
===========================================
- Hits 173 107 -66
- 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:
|
…hors - Rename GROUP_HOME_DISABLED → GROUP_HOME_CHILDREN: enum values ($801/$803/$862) match the "Licensed Group Home for Children or Child Caring Agency" line in 469-000-211, not the "Center for the Developmentally Disabled" line. - Document NAC line → enum mapping in BOARD_AND_ROOM and ASSISTED_LIVING_FACILITY enum descriptions (rate-equivalent arrangements collapsed by intentional design). - Add #page=126 to Title-469-Complete.pdf references in ne_aabd.py and ne_aabd_eligible.py (section 3-006.01A1 — payment calculation). - Add #page=130 to Title-469-Complete.pdf reference in ne_aabd_couple_rate_applies.py (section 3-006.02B3a(1) — couple budgeting). All 34 tests pass.
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 Nebraska's State Supplementary Payment — Aid to the Aged, Blind, or Disabled — Payment (AABD-PMT) — a state-administered, state-funded "fill-the-gap" supplement that brings SSI recipients up to a living-arrangement-specific standard of need.
Closes #8234
Regulatory Authority
Program Overview
Eligibility
ssi > 0(already impliesis_ssi_eligible+ federal income test + takeup)defined_for = StateCode.NEssi > 0ssi > 0ssi > 0max_(0, total_budget − uncapped_ssi)Benefit Amounts (469 NAC 469-000-211 — https://dhhs.ne.gov/Documents/469-000-211.pdf)
Independent Standard of Need (added to max shelter allowance)
Max Shelter Allowance (Independent only, frozen since 2015)
Alternate-Living Standards (monthly; PNA $64 embedded)
The 9 living arrangements in 469-000-211 collapse to 7 distinct alternate-living rate values plus an
INDEPENDENTandNONEenum entry. Rates that always co-move (Board & Room, Boarding Home, Drug Treatment Center; Assisted Living Facility and Mental Health Center; Center for Developmentally Disabled and Boarding Home) share enum values.Couple treatment: Joint 2-person Independent standard of need split 50/50 between spouses living together. Couples in any alternate-living arrangement are treated as two individuals (per SSA 2011 PDF Table 1 footnote a: "Couples are treated as two individuals starting with the month after leaving an independent living arrangement" — https://www.ssa.gov/policy/docs/progdesc/ssi_st_asst/2011/ne.pdf#page=2).
Personal Needs Allowance: $64 PNA is embedded in all alternate-living standards (matches NAC structure). Long-Term Care = $60 because Medicaid covers the PNA in those settings.
No federal Code B / ISM tier: Per SSA 2011 PDF page 1, "Persons living in the household of another receive the same state supplement as those living independently." Nebraska pays the Independent standard regardless of household-of-another status.
COLA: No automatic indexing. Standards frozen at 2021 values since 2021-01-01 through at least 2025.
Couple gating
A combined 2-person Independent budget is used only when all three conditions are met:
ssi_claim_is_joint(joint SSI claim)Otherwise, each spouse's AABD payment is computed individually (per SSA 2011 footnote a).
Not Modeled (by design)
Files
Plumbing updated:
policyengine_us/variables/household/income/spm_unit/spm_unit_benefits.py,policyengine_us/parameters/gov/household/state_benefits/household_state_benefits.yaml, andpolicyengine_us/programs.yaml.Note on naming: Variable prefix is
ne_aabd_*(matching Nebraska's official program name "Aid to the Aged, Blind, or Disabled"), not the genericne_ssp_*convention used in some other states.Historical Notes
Verification TODO
Test plan
ne_aabd_eligible.yaml,ne_aabd_living_arrangement.yaml, andintegration.yaml