From 6bfeba2fbd6417f33076dd13df9ba5e662c78635 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Thu, 14 May 2026 10:18:05 -0400 Subject: [PATCH 1/2] Fix Idaho OBBBA Schedule 1-A deduction sunset --- ...me_and_federal_schedule_1a_deductions.yaml | 22 ++++++++++++++ ...me_and_federal_schedule_1a_deductions.yaml | 30 +++++++++++++++++++ ...come_and_federal_schedule_1a_deductions.py | 11 +++---- 3 files changed, 56 insertions(+), 7 deletions(-) create mode 100644 policyengine_us/parameters/gov/states/id/tax/income/deductions/qualified_business_income_and_federal_schedule_1a_deductions.yaml diff --git a/policyengine_us/parameters/gov/states/id/tax/income/deductions/qualified_business_income_and_federal_schedule_1a_deductions.yaml b/policyengine_us/parameters/gov/states/id/tax/income/deductions/qualified_business_income_and_federal_schedule_1a_deductions.yaml new file mode 100644 index 00000000000..f660365783e --- /dev/null +++ b/policyengine_us/parameters/gov/states/id/tax/income/deductions/qualified_business_income_and_federal_schedule_1a_deductions.yaml @@ -0,0 +1,22 @@ +description: Idaho allows these qualified business income and federal Schedule 1-A deductions. +values: + 2018-01-01: + - qualified_business_income_deduction + 2025-01-01: + - qualified_business_income_deduction + - id_additional_senior_deduction + - tip_income_deduction + - overtime_income_deduction + - auto_loan_interest_deduction + 2029-01-01: + - qualified_business_income_deduction + +metadata: + unit: list + period: year + label: Idaho qualified business income and federal Schedule 1-A deductions + reference: + - title: Idaho Tax Commission - Update on filing 2025 Idaho income taxes now that conformity is law + href: https://tax.idaho.gov/pressrelease/update-on-filing-2025-idaho-income-taxes-now-that-conformity-is-law/ + - title: H.R.1 - One Big Beautiful Bill Act + href: https://www.congress.gov/bill/119th-congress/house-bill/1/text diff --git a/policyengine_us/tests/policy/baseline/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.yaml b/policyengine_us/tests/policy/baseline/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.yaml index e6f30277308..493d349c619 100644 --- a/policyengine_us/tests/policy/baseline/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.yaml +++ b/policyengine_us/tests/policy/baseline/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.yaml @@ -6,3 +6,33 @@ state_code: ID output: id_qualified_business_income_and_federal_schedule_1a_deductions: 11_000 + +- name: Idaho excludes temporary federal Schedule 1-A deductions after 2028. + period: 2029 + input: + people: + person1: + age: 66 + is_tax_unit_head: true + is_tax_unit_head_or_spouse: true + ssn_card_type: CITIZEN + employment_income: 120_000 + tip_income: 10_000 + treasury_tipped_occupation_code: 102 + fsla_overtime_premium: 10_000 + tax_units: + tax_unit: + members: [person1] + filing_status: SINGLE + adjusted_gross_income: 120_000 + households: + household: + members: [person1] + state_code: ID + auto_loan_interest: 10_000 + output: + tip_income_deduction: 10_000 + overtime_income_deduction: 10_000 + additional_senior_deduction: 3_300 + auto_loan_interest_deduction: 6_000 + id_qualified_business_income_and_federal_schedule_1a_deductions: 0 diff --git a/policyengine_us/variables/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.py b/policyengine_us/variables/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.py index 4d24963a410..48d3265c17f 100644 --- a/policyengine_us/variables/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.py +++ b/policyengine_us/variables/gov/states/id/tax/income/deductions/id_qualified_business_income_and_federal_schedule_1a_deductions.py @@ -13,10 +13,7 @@ class id_qualified_business_income_and_federal_schedule_1a_deductions(Variable): "https://tax.idaho.gov/pressrelease/update-on-filing-2025-idaho-income-taxes-now-that-conformity-is-law/", ) - adds = [ - "qualified_business_income_deduction", - "id_additional_senior_deduction", - "tip_income_deduction", - "overtime_income_deduction", - "auto_loan_interest_deduction", - ] + adds = ( + "gov.states.id.tax.income.deductions" + ".qualified_business_income_and_federal_schedule_1a_deductions" + ) From ab7f49b66c2b890a61a55d942813cec3b2b90d12 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Thu, 14 May 2026 10:21:59 -0400 Subject: [PATCH 2/2] Add changelog fragment --- changelog.d/8299.fixed.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/8299.fixed.md diff --git a/changelog.d/8299.fixed.md b/changelog.d/8299.fixed.md new file mode 100644 index 00000000000..77997f02718 --- /dev/null +++ b/changelog.d/8299.fixed.md @@ -0,0 +1 @@ +Fixed Idaho's OBBBA Schedule 1-A deduction conformity after 2028.