Implement Alaska State Supplementary Payment (SSP)#7873
Merged
MaxGhenis merged 12 commits intoPolicyEngine:mainfrom Mar 27, 2026
Merged
Implement Alaska State Supplementary Payment (SSP)#7873MaxGhenis merged 12 commits intoPolicyEngine:mainfrom
MaxGhenis merged 12 commits intoPolicyEngine:mainfrom
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #7873 +/- ##
============================================
- Coverage 100.00% 70.98% -29.02%
============================================
Files 2 4109 +4107
Lines 32 59411 +59379
Branches 0 290 +290
============================================
+ Hits 32 42170 +42138
- Misses 0 17240 +17240
- Partials 0 1 +1
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:
|
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Backdate payment_standard.yaml with 2017-2026 supplements - Fix NHP (Eligible Institution) supplement: $45 (2011) → $170 (2017+) - Add need_standard.yaml (pre-2020 income eligibility threshold) - Add separate_need_standard_in_effect toggle (true pre-2020, false 2020+) - Add min_benefit.yaml ($1/mo minimum for gap zone) - Update ak_ssp.py with two-step eligibility/payment logic - Fix broken reference URLs - Add 6 new tests for need standard logic Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The $1/month minimum benefit for the pre-2020 gap zone (income between payment standard and need standard) affects a tiny population for a trivial amount. Removing the need_standard, separate_need_standard_in_effect, and min_benefit parameters simplifies the formula without meaningful impact on simulation accuracy. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- 3 new payment_standard tests for Medicaid facility post-2017 rates - 1 new integration test for couple-both-eligible end-to-end Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Type B (household of another) supplements had sub-dollar rounding variations (±$0.34) from the 2/3 SSI reduction. Rounding to nearest dollar makes all supplements constant since 2011, matching what Alaska actually pays. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
|
I pushed follow-up fixes here. What changed:
|
MaxGhenis
approved these changes
Mar 27, 2026
MaxGhenis
approved these changes
Mar 27, 2026
Contributor
MaxGhenis
left a comment
There was a problem hiding this comment.
Reviewed the Alaska SSP follow-up fixes.
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 Alaska's State Supplementary Payment (SSP) -- the state supplement to federal SSI, administered as Adult Public Assistance (APA) by the Division of Public Assistance (DPA).
Closes #7872
Regulatory Authority
Program Overview
Eligibility
is_ssi_eligibleage >= age_threshold(parameter:eligibility/age_threshold, 18 since 1974)defined_for = StateCode.AKBenefit Amounts (SSA report Table 1; APA Standards 2023-2026)
Independent Living (Type A)
Type A amounts are constant across all years (state supplements stay fixed as federal COLA applies equally to both the federal benefit and the APA need standard).
Household of Another (Type B)
Type B amounts show rounding variations of +/- $0.34 across years because the Type B payment standard = (2/3 of federal benefit rate + state supplement), where the 2/3 factor introduces fractional cents.
Assisted Living (ALH)
Medicaid Facility / Nursing Home Personal Needs (NHP)
NHP rate change: Nursing home personal needs allowance increased from $45 to $170/month effective 2017 (nearly 4x increase).
Couple treatment: Joint claims split evenly per APA Manual 452-8. Implemented via
marital_unit.sum(supplement) / 2.COLA: APA standards increase by the same dollar amount as the federal SSI COLA, keeping state supplements constant (except Type B rounding variations and the NHP increase in 2017).
Income Reduction Logic
The state supplement is reduced dollar-for-dollar by income that exceeds the federal SSI benefit level. This is computed using
uncapped_ssi(which can be negative when countable income exceeds the SSI benefit):income_excess = max(0, -uncapped_ssi)state_supplement = max(0, payment_standard - income_excess)This correctly handles the "gap zone" where a person's income is too high for federal SSI but still below the APA need standard.
Not Modeled (by design)
Files
Verification TODO
Test plan