Update Georgia parent/caretaker Medicaid limit for 2025; verify Medicare IRMAA (#8787) and KS CHIP (#8792) accuracy#8923
Merged
Conversation
Georgia uses a frozen-dollar (Section 1931) parent/caretaker standard, so its FPL percentage drifts down each year as the FPL rises. PR PolicyEngine#8913 set the 2024 value to 0.33 (28% FPL + 5% MAGI disregard) from MACPAC Exhibit 36 (July 2024). MACPAC Exhibit 36 (July 2025, data as of January 2025) now reports Georgia's parents/caretakers level at 26% FPL, so the effective limit falls to 0.31 (26% + 5% disregard) from 2025. Adds the 2025-01-01: 0.31 value with the July 2025 MACPAC reference and regression tests pinning GA at 0.31 for 2025 and 2026. Refs PolicyEngine#8834. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
103a5e1 to
dc07ada
Compare
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
Accuracy review of three health-program issues (#8787 Medicare IRMAA, #8834 GA parent/caretaker Medicaid, #8792 Kansas CHIP per-capita denominator). All three had already been addressed by recently merged PRs; this PR verifies each against primary sources and lands the one remaining accuracy correction.
Net code change: one dated Georgia Medicaid parameter update (2025). The Medicare and Kansas CHIP issues are verified correct as-is and should be closed with the evidence below.
#8834 — Georgia parent/caretaker Medicaid (fix in this PR)
PR #8913 set
income_limit.GA = 0.33at2024-01-01(28% FPL + 5% MAGI disregard) from MACPAC Exhibit 36 (July 2024), and its own note flagged that the frozen-dollar standard should be re-verified as the FPL rises.Verified against MACPAC Exhibit 36 (July 2025 edition, data as of January 2025): Georgia's "Parents and caretaker relatives of dependent children" level is now 26% FPL. Exhibit 36's own note states the effective limit is 5 percentage points higher than the table value (general MAGI disregard), and that states using dollar standards have those dollars converted to an FPL percentage — exactly Georgia's frozen-dollar case. So the effective 2025 limit is 0.31 (26% + 5%).
Cross-check on the +5% convention: MACPAC lists Kansas at 33%, and PE already stores
KS = 0.38(33% + 5%) — confirming the parameter encodes the with-disregard value.Note on the DFCS "247% FPL" figure: Georgia DFCS Appendix A2 lists a "Parent/Caretaker with Children" row at 247% FPL. That is the AU-level test for a unit that contains children (governed by the children's higher limit), not the Section 1931 parent floor this parameter models. The parent floor is MACPAC's 26% (frozen dollar ≈ $551/month for a family of three in 2024–early 2025).
Changes:
GA: 2025-01-01: 0.31with the July 2025 MACPAC reference.#8787 — Medicare Part B/D IRMAA (verified correct; recommend close)
Already fixed by merged PR #8788. Independently verified every 2026 value against SSA POMS HI 01101.020 and the CMS 2026 fact sheet figures:
separate.yamlcorrectly carriestype: single_amount(as do all five filing statuses)period.offset(-2, "year")on AGI + tax-exempt interest) are present and correct in bothgross_medicare_part_b_premiumandincome_adjusted_part_d_premium_surchargeThe Medicare test tree passes (120 tests). The only item in #8787 not addressed is
upratingmetadata for projecting thresholds past 2026 — deliberately left out here rather than guessed, since the statutory rule (CPI-U over the 12 months ending August, rounded to $1,000, with special top-bracket handling) needs an exact encoding; approximating it would reduce accuracy versus holding the last official year. Recommend tracking uprating as a separate enhancement.#8792 — Kansas CHIP per-capita denominator (verified correct; recommend close)
Already fixed by merged PR #8798.
per_capita_chipnow explicitly divides separate-CHIP spending by separate-CHIP enrollment (the exact concept the issue requested), replacing the total-CHIP denominator (~89,803) the issue flagged.Verified the Kansas inputs against MACPAC MACStats (Feb 2026 Data Book, FY2024 data):
72_018✓136_581_734✓The issue's ~61,100 KLRD figure is superseded by MACPAC, which is the model's cited national calibration source (and the source PE uses for every other state's denominator). No change needed.
Tests
medicaid_parent_income_limit: 9 passed (2 new GA cases)🤖 Generated with Claude Code