Skip to content

Implement SC H.4216 comprehensive tax reform#7494

Open
DTrim99 wants to merge 1 commit intoPolicyEngine:mainfrom
DTrim99:sc-h4216-tax-reform
Open

Implement SC H.4216 comprehensive tax reform#7494
DTrim99 wants to merge 1 commit intoPolicyEngine:mainfrom
DTrim99:sc-h4216-tax-reform

Conversation

@DTrim99
Copy link
Collaborator

@DTrim99 DTrim99 commented Feb 25, 2026

Summary

Implements South Carolina H.4216 as a contributed reform. This comprehensive income tax reform bill passed the SC Senate 39-5 and includes:

1. EITC Cap at $200 (Section 7)

The bill caps the SC EITC (125% of federal) at a maximum of $200.

2. SC Income Adjusted Deduction (SCIAD) (Section 3)

Replaces federal standard/itemized deductions with a new state-specific deduction:

Filing Status Base Amount Phase-out Start Phase-out End
Single $15,000 $40,000 $95,000
Married Filing Separately $15,000 $40,000 $95,000
Head of Household $22,500 $60,000 $142,500
Married Filing Jointly $30,000 $80,000 $190,000
Surviving Spouse $30,000 $80,000 $190,000

Formula: SCIAD = base_amount × (1 - (AGI - phase_out_start) / phase_out_width)

3. New Tax Rates (Section 1)

Bracket Threshold Rate
1 $0 1.99%
2 $30,000 5.21%

Key Implementation Details

  • Federal standard/itemized deductions are eliminated for SC purposes (Section 2)
  • The reform starts from AGI and applies SCIAD instead of federal deductions
  • SC additions and subtractions still apply

Closes #7493

Test Plan

  • 24 YAML tests covering:
    • EITC cap ($200 limit)
    • SCIAD for all 5 filing statuses
    • Phase-out boundary conditions (at start, mid, end)
    • Rate bracket boundaries ($30k threshold)
    • Zero/low income edge cases
    • Verification that federal deductions are ignored
    • Non-SC resident handling

🤖 Generated with Claude Code

@DTrim99
Copy link
Collaborator Author

DTrim99 commented Feb 25, 2026

Implementation Notes

Files Added

Parameters (gov/contrib/states/sc/h4216/):

  • in_effect.yaml - Master switch (default: false)
  • eitc/max.yaml - $200 cap
  • sciad/amount.yaml - Base amounts by filing status
  • sciad/phase_out/start.yaml - Phase-out thresholds
  • sciad/phase_out/width.yaml - Phase-out denominators
  • rates.yaml - New 1.99%/5.21% rate structure

Reform Code (reforms/states/sc/h4216/):

  • Overrides sc_eitc to apply $200 cap
  • Creates new sc_sciad variable with phase-out formula
  • Overrides sc_taxable_income to use AGI + SCIAD (not federal taxable income)
  • Overrides sc_income_tax_before_non_refundable_credits with new rates

Tests (24 total):

  • 2 EITC cap tests
  • 10 SCIAD tests (all filing statuses, phase-out boundaries)
  • 4 rate bracket tests
  • 3 standard/itemized deduction elimination tests
  • 3 zero/low income edge cases
  • 2 boundary tests (phase-out start/end exact values)

References

@DTrim99 DTrim99 force-pushed the sc-h4216-tax-reform branch from 7d51bbf to eeefd54 Compare February 25, 2026 22:45
@DTrim99
Copy link
Collaborator Author

DTrim99 commented Feb 25, 2026

Rebased on upstream/main and added changelog fragment in changelog.d/sc-h4216-tax-reform.added.md to comply with the new towncrier-based changelog system.

Adds contributed reform for South Carolina H.4216 which includes:
- EITC cap at $200 (Section 7)
- SC Income Adjusted Deduction (SCIAD) replacing federal standard/itemized deductions (Section 3)
- New tax rates: 1.99% up to $30k, 5.21% above (Section 1)

SCIAD amounts by filing status:
- Single/Separate: $15,000 (phases out $40k-$95k AGI)
- Head of Household: $22,500 (phases out $60k-$142.5k AGI)
- Joint/Surviving Spouse: $30,000 (phases out $80k-$190k AGI)

Closes PolicyEngine#7493

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@DTrim99 DTrim99 force-pushed the sc-h4216-tax-reform branch from eeefd54 to e39e40f Compare February 25, 2026 22:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

SC H4216: Add SC EITC cap and SCIAD deduction parameters

1 participant