Implement Florida State Supplementary Payment (SSP)#7891
Draft
hua7450 wants to merge 5 commits intoPolicyEngine:mainfrom
Draft
Implement Florida State Supplementary Payment (SSP)#7891hua7450 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>
…ine#7890) 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✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7891 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 4 7 +3
Lines 90 126 +36
Branches 2 2
=========================================
+ Hits 90 126 +36
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:
|
- Fix redesign/provider_rate_offset 2011 value: $78.40 → $24.40 (was max OSS cap, not offset; SSA 2011 income limit $752.40 confirms) - Fix redesign/max_oss/couple 2011 value: $396.80 → $156.80 (SSA 2011 footnote b: couples treated as two individuals) - Replace broken 404 Appendix A-12 URL in all 9 parameter files - Update affected test expected values Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add protected/in_effect.yaml (false before 2024-07-01, true after) to properly gate the Protected track instead of using $0 values as sentinels. Formulas now use `if p.protected.in_effect:` to avoid accessing Protected parameters in pre-2024 periods. 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 Florida's Optional State Supplementation (OSS) -- state supplement for SSI recipients in licensed residential care facilities.
Closes #7890
Regulatory Authority
Program Overview
Eligibility
is_ssi_eligible(checks aged/blind/disabled + resources + immigration)uncapped_ssi > 0for Group 1;ssi_countable_income <= fl_oss_income_standardfor Group 2defined_for = StateCode.FLis_ssi_eligible(checks immigration)is_ssi_eligible(checksmeets_ssi_resource_test)fl_oss_facility_typeinput enum (NONE = ineligible)ssi_countable_incomeBenefit Amounts (DCF Appendix A-12, Jan 2026)
Two program tracks with different rates:
Provider Rates (FBR + fixed offset)
Personal Needs Allowance (PNA)
Max OSS Caps (frozen)
Couple treatment: Couple provider rate = 2 * individual rate - $97; each person receives half the couple benefit.
COLA: Automatic via SSI FBR + fixed offset mechanism. The offsets ($24.40, $185.00) and max OSS caps are frozen; only the FBR component changes with annual COLA.
Formula:
OSS = min(max(0, provider_rate + PNA - countable_income), max_oss)Income Standards (for Group 2 eligibility)
Not Modeled (by design)
ssi_countable_incomeusedFiles
Verification TODO
Test plan