Add Indiana supplemental homestead credit (SEA 1, 2025)#8997
Open
DTrim99 wants to merge 1 commit into
Open
Conversation
Senate Enrolled Act 1 (2025), SEC. 74, adds IC 6-1.1-20.6-7.7, a supplemental homestead credit equal to the lesser of 10% of the homestead property tax liability or $300, for property taxes first due and payable in 2026 and after. There is no age or income limit; it applies to owner- occupied homesteads. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8997 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 1 1
Lines 18 13 -5
=========================================
- Hits 18 13 -5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
Adds Indiana's Supplemental Homestead Credit, created by Senate Enrolled Act 1 (2025) (P.L.68-2025), SEC. 74, adding IC 6-1.1-20.6-7.7.
The credit is the lesser of 10% of the homestead property tax liability or $300, for property taxes first due and payable in 2026 and after. There is no age or income limit; it applies to owner-occupied homesteads. It is modeled as
min(0.10 × real_estate_taxes, $300), so renters (with no real estate taxes) receive $0.Changes
in_supplemental_homestead_credit(TaxUnit,defined_for = StateCode.IN) =min(rate × real_estate_taxes, cap).gov.states.in.tax.property.supplemental_homestead_credit:rate(10%) andcap($300), both from 2026.state_property_tax_credits.yaml, alongside the existingin_over_65_property_tax_credit.Scope
SEA 1 created several property-tax credits. This PR adds the flagship supplemental homestead credit (universal to homesteaders, no income test). For context on the others:
in_over_65_property_tax_credit(Add Indiana over-65 property tax credit #8308).Tests
in_supplemental_homestead_credit.yamlcovers: below-cap ($2,000 → $200), the $3,000 liability boundary (→ $300 cap), above-cap ($5,000 → $300), renter with no property tax (→ $0), and non-IN resident (→ $0).References
🤖 Generated with Claude Code