Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indiana National Guard and Reserve Pay Deduction 2023 #5082

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- bump: patch
changes:
fixed:
- Add switch to basic income phase-in.
- Indiana National Guard and Reserve Pay Deduction 2023
srilareddy marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
description: List of standard deductions applicable to Indiana taxpayers.
srilareddy marked this conversation as resolved.
Show resolved Hide resolved
values:
2021-01-01:
- in_renters_deduction
- in_homeowners_property_tax_deduction
- salt_refund_last_year
- us_govt_interest
- tax_unit_taxable_social_security # includes railroad retirement benefits
srilareddy marked this conversation as resolved.
Show resolved Hide resolved
- in_military_service_deduction
- in_nonpublic_school_deduction
- in_nol
- in_unemployment_compensation_deduction
- in_other_deductions

2023-01-01:
- in_renters_deduction
- in_homeowners_property_tax_deduction
- salt_refund_last_year
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you cite subsections for each of these in comments?

- us_govt_interest
- tax_unit_taxable_social_security # includes railroad retirement benefits
- in_military_service_deduction
- in_nonpublic_school_deduction
- in_nol
- in_unemployment_compensation_deduction
- in_other_deductions
- military_basic_pay
metadata:
unit: list
Period: year
label: Indiana Deductions
reference:
-title: Indiana General Assembly Legal Code Taxation Title 6
href: http://iga.in.gov/legislative/laws/2021/ic/titles/006#6-3

srilareddy marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,4 @@ class in_deductions(Variable):
definition_period = YEAR
reference = "http://iga.in.gov/legislative/laws/2021/ic/titles/006#6-3"

adds = [
"in_renters_deduction",
"in_homeowners_property_tax_deduction",
"salt_refund_last_year",
"us_govt_interest",
"tax_unit_taxable_social_security", # includes railroad retirement benefits
"in_military_service_deduction",
"in_nonpublic_school_deduction",
"in_nol",
"in_unemployment_compensation_deduction",
"in_other_deductions",
]
adds = "gov.states.in.tax.income.deductions.deductions"