Summary
PolicyEngine-US current-law parameters appear to continue several temporary OBBBA deductions after their statutory sunset.
Public Law 119-21 sunsets these provisions for taxable years beginning after December 31, 2028:
- Section 70103: temporary senior deduction
- Section 70201: qualified tips deduction
- Section 70202: qualified overtime compensation deduction
- Section 70203: qualified passenger vehicle loan interest deduction, limited to taxable years 2025 through 2028
In policyengine[us]==4.4.4, the corresponding parameters remain positive in 2029.
Reproduction
from policyengine_us import Microsimulation
p = Microsimulation().tax_benefit_system.parameters
checks = {
"tip cap": p.gov.irs.deductions.tip_income.cap,
"overtime joint cap": p.gov.irs.deductions.overtime_income.cap.JOINT,
"overtime single cap": p.gov.irs.deductions.overtime_income.cap.SINGLE,
"senior deduction": p.gov.irs.deductions.senior_deduction.amount,
"auto loan cap": p.gov.irs.deductions.auto_loan_interest.cap,
}
for label, param in checks.items():
print(label, {year: param(f"{year}-01-01") for year in (2025, 2026, 2028, 2029)})
Observed in policyengine[us]==4.4.4:
tip cap {2025: 25000, 2026: 25000, 2028: 25000, 2029: 25000}
overtime joint cap {2025: 25000, 2026: 25000, 2028: 25000, 2029: 25000}
overtime single cap {2025: 12500, 2026: 12500, 2028: 12500, 2029: 12500}
senior deduction {2025: 6000, 2026: 6000, 2028: 6000, 2029: 6000}
auto loan cap {2025: 10000, 2026: 10000, 2028: 10000, 2029: 10000}
Expected: the temporary deduction amounts/caps should be zero for 2029 and later, absent a separate extension.
Likely paths
policyengine_us/parameters/gov/irs/deductions/tip_income/cap.yaml
policyengine_us/parameters/gov/irs/deductions/overtime_income/cap.yaml
policyengine_us/parameters/gov/irs/deductions/senior_deduction/amount.yaml
policyengine_us/parameters/gov/irs/deductions/auto_loan_interest/cap.yaml
Sources
- Public Law 119-21, Section 70103: temporary senior deduction, taxable years before 2029
- Public Law 119-21, Section 70201(h): no tips deduction for taxable years beginning after December 31, 2028
- Public Law 119-21, Section 70202(g): no overtime deduction for taxable years beginning after December 31, 2028
- Public Law 119-21, Section 70203(a): car loan interest special rule applies to taxable years beginning after December 31, 2024, and before January 1, 2029
Official text: https://www.govinfo.gov/content/pkg/PLAW-119publ21/html/PLAW-119publ21.htm
Summary
PolicyEngine-US current-law parameters appear to continue several temporary OBBBA deductions after their statutory sunset.
Public Law 119-21 sunsets these provisions for taxable years beginning after December 31, 2028:
In
policyengine[us]==4.4.4, the corresponding parameters remain positive in 2029.Reproduction
Observed in
policyengine[us]==4.4.4:Expected: the temporary deduction amounts/caps should be zero for 2029 and later, absent a separate extension.
Likely paths
policyengine_us/parameters/gov/irs/deductions/tip_income/cap.yamlpolicyengine_us/parameters/gov/irs/deductions/overtime_income/cap.yamlpolicyengine_us/parameters/gov/irs/deductions/senior_deduction/amount.yamlpolicyengine_us/parameters/gov/irs/deductions/auto_loan_interest/cap.yamlSources
Official text: https://www.govinfo.gov/content/pkg/PLAW-119publ21/html/PLAW-119publ21.htm