Skip to content

Commit 57459b0

Browse files
Merge pull request #7686 from PolicyEngine/cdcc-fix-ne
Fix NE nonrefundable CDCC to use claimed federal credit
2 parents 3c40fed + a9d1bfd commit 57459b0

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

changelog.d/cdcc-fix-ms.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add ms_cdcc to state CDCC aggregation list so Mississippi's child and dependent care credit flows through to state_cdcc totals.

changelog.d/cdcc-fix-ne.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix Nebraska nonrefundable CDCC to use the actual claimed federal credit (`cdcc`) rather than the pre-liability-cap potential credit (`cdcc_potential`), consistent with Form 1040N instructions referencing Schedule 3 line 2.

policyengine_us/parameters/gov/states/household/state_cdccs.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ values:
1919
- md_cdcc # Maryland
2020
- me_child_care_credit # Maine
2121
- mn_cdcc # Minnesota
22+
- ms_cdcc # Mississippi
2223
- ne_cdcc_nonrefundable # Nebraska
2324
- ne_cdcc_refundable # Nebraska
2425
- nj_cdcc # New Jersey

policyengine_us/tests/policy/baseline/gov/states/ne/tax/income/credits/cdcc/ne_cdcc_nonrefundable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
period: 2021
33
input:
44
adjusted_gross_income: 28_000
5-
cdcc_potential: 2_000
5+
cdcc: 2_000
66
state_code: NE
77
output:
88
ne_cdcc_nonrefundable: 0
@@ -11,7 +11,7 @@
1111
period: 2022
1212
input:
1313
adjusted_gross_income: 30_000
14-
cdcc_potential: 2_000
14+
cdcc: 2_000
1515
state_code: NE
1616
output:
1717
ne_cdcc_nonrefundable: 2_000 * 0.25

policyengine_us/variables/gov/states/ne/tax/income/credits/cdcc/ne_cdcc_nonrefundable.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ def formula(tax_unit, period, parameters):
1818
# determine AGI eligibility
1919
eligible = ~tax_unit("ne_cdcc_refundable_eligible", period)
2020
# determine NE nonrefundable cdcc amount
21-
# Nebraska matches the potential federal credit
22-
us_cdcc = tax_unit("cdcc_potential", period)
21+
# Nebraska references Schedule 3 line 2 (the actual claimed federal
22+
# credit, limited by tax liability under IRC § 26), not the potential
23+
# credit before the liability cap.
24+
us_cdcc = tax_unit("cdcc", period)
2325
ne_cdcc = us_cdcc * p.cdcc.nonrefundable.fraction
2426
return eligible * ne_cdcc

0 commit comments

Comments
 (0)