Add Indiana SB 243 OBBBA tax conformity (tips, overtime, car loan interest)#7771
Open
DTrim99 wants to merge 3 commits intoPolicyEngine:mainfrom
Open
Add Indiana SB 243 OBBBA tax conformity (tips, overtime, car loan interest)#7771DTrim99 wants to merge 3 commits intoPolicyEngine:mainfrom
DTrim99 wants to merge 3 commits intoPolicyEngine:mainfrom
Conversation
Implements Indiana's conformity to federal OBBBA (One Big Beautiful Bill Act) tax provisions for tax year 2026 only: - IC 6-3-2-31: Tip income deduction (conforms to IRC Section 224) - IC 6-3-2-32: Overtime income deduction (conforms to IRC Section 225) - IC 6-3-2-33: Auto loan interest deduction (conforms to IRC Section 163(h)(4)) Closes PolicyEngine#7770 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7771 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 2 3 +1
Lines 13 42 +29
=========================================
+ Hits 13 42 +29
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:
|
Use bracket notation gov.states["in"] instead of gov.states.in_ since "in" is a Python keyword. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix parameter descriptions to use standard format ("provides this deduction")
- Add code comments documenting unimplemented proration rules (IC 6-3-2-31(c),
IC 6-3-2-32(c)) — zero real-world impact under current IN law
- Add code comment documenting unmodeled residency/spouse/trust rules
(IC 6-3-2-33(c)-(d)) — covered by defined_for or not applicable
- Add integration test verifying tip deduction flows through in_deductions
Co-Authored-By: Claude Opus 4.6 <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 Indiana Senate Bill 243's conformity to federal OBBBA (One Big Beautiful Bill Act of 2025) tax provisions for tax year 2026.
Closes #7770
Provisions Implemented
Regulatory Authority
Implementation Details
Indiana's income tax starts from federal AGI. These federal OBBBA deductions are "below-the-line" at the federal level (taken after AGI), but Indiana is conforming by creating state-level deductions equal to the federal amounts.
Each Indiana deduction:
Fiscal Impact
Per the Legislative Services Agency fiscal note:
Files Added
Parameters
parameters/gov/states/in/tax/income/deductions/obbba_conformity/tip_income_deduction_available.yamlparameters/gov/states/in/tax/income/deductions/obbba_conformity/overtime_income_deduction_available.yamlparameters/gov/states/in/tax/income/deductions/obbba_conformity/auto_loan_interest_deduction_available.yamlVariables
variables/gov/states/in/tax/income/deductions/obbba_conformity/in_tip_income_deduction.pyvariables/gov/states/in/tax/income/deductions/obbba_conformity/in_overtime_income_deduction.pyvariables/gov/states/in/tax/income/deductions/obbba_conformity/in_auto_loan_interest_deduction.pyTests
Modified
parameters/gov/states/in/tax/income/deductions/deductions.yaml- Added OBBBA deductions for 2026🤖 Generated with Claude Code