policyengine-us 1.413.3__py3-none-any.whl → 1.418.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of policyengine-us might be problematic. Click here for more details.

Files changed (62) hide show
  1. policyengine_us/parameters/gov/contrib/aca/ptc_simplified_bracket/brackets.yaml +6 -6
  2. policyengine_us/parameters/gov/contrib/aca/ptc_simplified_bracket/income_eligibility.yaml +6 -6
  3. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/baby_bonus_act/age_limit.yaml +8 -0
  4. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/baby_bonus_act/amount.yaml +13 -0
  5. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/baby_bonus_act/in_effect.yaml +8 -0
  6. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/baby_bonus_act/min_birth_year.yaml +8 -0
  7. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/boost_act/amount.yaml +13 -0
  8. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/boost_act/in_effect.yaml +8 -0
  9. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/boost_act/max_age.yaml +8 -0
  10. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/boost_act/min_age.yaml +8 -0
  11. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/boost_act/tax/rate.yaml +8 -0
  12. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/boost_act/tax/threshold.yaml +24 -0
  13. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/adult_dependent_credit/amount.yaml +9 -0
  14. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/adult_dependent_credit/min_age.yaml +8 -0
  15. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/child_benefit/age_limit.yaml +8 -0
  16. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/filer_credit/amount.yaml +20 -0
  17. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/filer_credit/eligibility/max_age.yaml +10 -0
  18. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/filer_credit/eligibility/min_age.yaml +8 -0
  19. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/filer_credit/phase_out/rate.yaml +8 -0
  20. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/filer_credit/phase_out/start.yaml +20 -0
  21. policyengine_us/parameters/gov/contrib/congress/tlaib/income_security_package/end_child_poverty_act/in_effect.yaml +8 -0
  22. policyengine_us/parameters/gov/local/tx/harris/rides/age_threshold.yaml +13 -0
  23. policyengine_us/parameters/gov/local/tx/harris/rides/customer_payment_rate.yaml +12 -0
  24. policyengine_us/parameters/gov/states/tx/fpp/age_threshold.yaml +10 -0
  25. policyengine_us/parameters/gov/states/tx/fpp/annual_benefit.yaml +12 -0
  26. policyengine_us/parameters/gov/states/tx/fpp/fpg_percentage.yaml +15 -0
  27. policyengine_us/reforms/congress/tlaib/__init__.py +4 -0
  28. policyengine_us/reforms/congress/tlaib/income_security_package/__init__.py +17 -0
  29. policyengine_us/reforms/congress/tlaib/income_security_package/income_security_package.py +402 -0
  30. policyengine_us/reforms/ctc/ctc_minimum_refundable_amount.py +11 -0
  31. policyengine_us/reforms/reforms.py +6 -0
  32. policyengine_us/tests/policy/baseline/gov/local/tx/harris/in_harris_county_tx.yaml +27 -0
  33. policyengine_us/tests/policy/baseline/gov/local/tx/harris/rides/tx_harris_rides_eligible.yaml +35 -0
  34. policyengine_us/tests/policy/baseline/gov/local/tx/harris/rides/tx_harris_rides_subsidy.yaml +32 -0
  35. policyengine_us/tests/policy/baseline/gov/states/tx/fpp/integration.yaml +133 -0
  36. policyengine_us/tests/policy/baseline/gov/states/tx/fpp/tx_fpp_age_eligible.yaml +39 -0
  37. policyengine_us/tests/policy/baseline/gov/states/tx/fpp/tx_fpp_benefit.yaml +39 -0
  38. policyengine_us/tests/policy/baseline/gov/states/tx/fpp/tx_fpp_income_eligible.yaml +53 -0
  39. policyengine_us/tests/policy/baseline/gov/states/tx/fpp/tx_fpp_income_limit.yaml +44 -0
  40. policyengine_us/tests/policy/baseline/household/demographic/geographic/in_nyc.yaml +20 -0
  41. policyengine_us/tests/policy/contrib/aca/ptc_simplified_bracket.yaml +12 -12
  42. policyengine_us/tests/policy/contrib/congress/tlaib/end_child_poverty_act/integration.yaml +0 -42
  43. policyengine_us/tests/policy/contrib/congress/tlaib/income_security/integration.yaml +154 -0
  44. policyengine_us/tests/policy/contrib/congress/tlaib/income_security/state_integration.yaml +115 -0
  45. policyengine_us/tests/policy/contrib/congress/tlaib/income_security/test_individual_acts.yaml +149 -0
  46. policyengine_us/tests/policy/contrib/congress/tlaib/income_security/unit_tests.yaml +272 -0
  47. policyengine_us/variables/gov/local/tx/harris/in_harris_county_tx.py +12 -0
  48. policyengine_us/variables/gov/local/tx/harris/rides/tx_harris_rides_eligible.py +22 -0
  49. policyengine_us/variables/gov/local/tx/harris/rides/tx_harris_rides_subsidy.py +26 -0
  50. policyengine_us/variables/gov/states/tx/fpp/tx_fpp_age_eligible.py +16 -0
  51. policyengine_us/variables/gov/states/tx/fpp/tx_fpp_benefit.py +15 -0
  52. policyengine_us/variables/gov/states/tx/fpp/tx_fpp_eligible.py +18 -0
  53. policyengine_us/variables/gov/states/tx/fpp/tx_fpp_income_eligible.py +18 -0
  54. policyengine_us/variables/gov/states/tx/fpp/tx_fpp_income_limit.py +24 -0
  55. policyengine_us/variables/household/demographic/geographic/in_nyc.py +12 -3
  56. policyengine_us/variables/household/expense/person/pre_subsidy_transportation_expense.py +9 -0
  57. {policyengine_us-1.413.3.dist-info → policyengine_us-1.418.0.dist-info}/METADATA +1 -1
  58. {policyengine_us-1.413.3.dist-info → policyengine_us-1.418.0.dist-info}/RECORD +61 -14
  59. policyengine_us/parameters/gov/states/tx/index.yaml +0 -4
  60. {policyengine_us-1.413.3.dist-info → policyengine_us-1.418.0.dist-info}/WHEEL +0 -0
  61. {policyengine_us-1.413.3.dist-info → policyengine_us-1.418.0.dist-info}/entry_points.txt +0 -0
  62. {policyengine_us-1.413.3.dist-info → policyengine_us-1.418.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,39 @@
1
+ - name: Age eligible at 64 (at threshold)
2
+ period: 2025
3
+ input:
4
+ state_code: TX
5
+ age: 64
6
+ output:
7
+ tx_fpp_age_eligible: true
8
+
9
+ - name: Age eligible at 30 (below threshold)
10
+ period: 2026
11
+ input:
12
+ state_code: TX
13
+ age: 30
14
+ output:
15
+ tx_fpp_age_eligible: true
16
+
17
+ - name: Age eligible at 18 (young adult)
18
+ period: 2026
19
+ input:
20
+ state_code: TX
21
+ age: 18
22
+ output:
23
+ tx_fpp_age_eligible: true
24
+
25
+ - name: Age ineligible at 65 (above threshold)
26
+ period: 2026
27
+ input:
28
+ state_code: TX
29
+ age: 65
30
+ output:
31
+ tx_fpp_age_eligible: false
32
+
33
+ - name: Age ineligible at 70
34
+ period: 2026
35
+ input:
36
+ state_code: TX
37
+ age: 70
38
+ output:
39
+ tx_fpp_age_eligible: false
@@ -0,0 +1,39 @@
1
+ - name: Benefit for eligible individual
2
+ period: 2026
3
+ input:
4
+ state_code: TX
5
+ age: 30
6
+ spm_unit_size: 1
7
+ spm_unit_net_income: 20_000
8
+ output:
9
+ tx_fpp_benefit: 266.84
10
+
11
+ - name: No benefit for age-ineligible individual
12
+ period: 2026
13
+ input:
14
+ state_code: TX
15
+ age: 65
16
+ spm_unit_size: 1
17
+ spm_unit_net_income: 20_000
18
+ output:
19
+ tx_fpp_benefit: 0
20
+
21
+ - name: No benefit for income-ineligible individual
22
+ period: 2026
23
+ input:
24
+ state_code: TX
25
+ age: 30
26
+ spm_unit_size: 1
27
+ spm_unit_net_income: 50_000
28
+ output:
29
+ tx_fpp_benefit: 0
30
+
31
+ - name: Benefit for eligible person at age threshold
32
+ period: 2026
33
+ input:
34
+ state_code: TX
35
+ age: 64
36
+ spm_unit_size: 2
37
+ spm_unit_net_income: 40_000
38
+ output:
39
+ tx_fpp_benefit: 266.84
@@ -0,0 +1,53 @@
1
+ - name: Income eligible - at limit for household of 1
2
+ period: 2026
3
+ input:
4
+ state_code: TX
5
+ spm_unit_size: 1
6
+ spm_unit_net_income: 39_125 # 250% of 2025 FPG for size 1
7
+ output:
8
+ tx_fpp_income_eligible: true
9
+
10
+ - name: Income eligible - below limit for household of 1
11
+ period: 2026
12
+ input:
13
+ state_code: TX
14
+ spm_unit_size: 1
15
+ spm_unit_net_income: 20_000
16
+ output:
17
+ tx_fpp_income_eligible: true
18
+
19
+ - name: Income ineligible - above limit for household of 1
20
+ period: 2026
21
+ input:
22
+ state_code: TX
23
+ spm_unit_size: 1
24
+ spm_unit_net_income: 42_000
25
+ output:
26
+ tx_fpp_income_eligible: false
27
+
28
+ - name: Income eligible - at limit for household of 4
29
+ period: 2026
30
+ input:
31
+ state_code: TX
32
+ spm_unit_size: 4
33
+ spm_unit_net_income: 80_375 # 250% of 2025 FPG for size 4
34
+ output:
35
+ tx_fpp_income_eligible: true
36
+
37
+ - name: Income eligible - below limit for household of 4
38
+ period: 2026
39
+ input:
40
+ state_code: TX
41
+ spm_unit_size: 4
42
+ spm_unit_net_income: 60_000
43
+ output:
44
+ tx_fpp_income_eligible: true
45
+
46
+ - name: Income ineligible - above limit for household of 4
47
+ period: 2026
48
+ input:
49
+ state_code: TX
50
+ spm_unit_size: 4
51
+ spm_unit_net_income: 90_000
52
+ output:
53
+ tx_fpp_income_eligible: false
@@ -0,0 +1,44 @@
1
+ - name: FPP income limit for household size 1
2
+ period: 2026
3
+ absolute_error_margin: 1
4
+ input:
5
+ state_code: TX
6
+ spm_unit_size: 1
7
+ output:
8
+ tx_fpp_income_limit: 40_076 # 250% of 2026 FPG for size 1
9
+
10
+ - name: FPP income limit for household size 2
11
+ period: 2026
12
+ absolute_error_margin: 1
13
+ input:
14
+ state_code: TX
15
+ spm_unit_size: 2
16
+ output:
17
+ tx_fpp_income_limit: 54_161 # 250% of 2026 FPG for size 2
18
+
19
+ - name: FPP income limit for household size 3
20
+ period: 2026
21
+ absolute_error_margin: 1
22
+ input:
23
+ state_code: TX
24
+ spm_unit_size: 3
25
+ output:
26
+ tx_fpp_income_limit: 68_245 # 250% of 2026 FPG for size 3
27
+
28
+ - name: FPP income limit for household size 5
29
+ period: 2026
30
+ absolute_error_margin: 1
31
+ input:
32
+ state_code: TX
33
+ spm_unit_size: 5
34
+ output:
35
+ tx_fpp_income_limit: 96_415 # 250% of 2026 FPG for size 5
36
+
37
+ - name: FPP income limit for household size 10
38
+ period: 2026
39
+ absolute_error_margin: 1
40
+ input:
41
+ state_code: TX
42
+ spm_unit_size: 10
43
+ output:
44
+ tx_fpp_income_limit: 166_837 # 250% of 2026 FPG for size 10
@@ -0,0 +1,20 @@
1
+ - name: Queens County
2
+ period: 2023
3
+ input:
4
+ county_str: QUEENS_COUNTY_NY
5
+ output:
6
+ in_nyc: true
7
+
8
+ - name: Not NYC
9
+ period: 2025
10
+ input:
11
+ county_str: LOS_ANGELES_COUNTY_CA
12
+ output:
13
+ in_nyc: false
14
+
15
+ - name: Kings County
16
+ period: 2023
17
+ input:
18
+ county_str: KINGS_COUNTY_NY
19
+ output:
20
+ in_nyc: true
@@ -1,5 +1,5 @@
1
1
  - name: Single filer at 100% FPL - starts at 0%
2
- period: 2028
2
+ period: 2026
3
3
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
4
4
  absolute_error_margin: 0.00001
5
5
  input:
@@ -9,7 +9,7 @@
9
9
  aca_ptc_phase_out_rate: 0.0
10
10
 
11
11
  - name: Single filer at 200% FPL - linear increase to 4%
12
- period: 2028
12
+ period: 2026
13
13
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
14
14
  absolute_error_margin: 0.00001
15
15
  input:
@@ -19,7 +19,7 @@
19
19
  aca_ptc_phase_out_rate: 0.04
20
20
 
21
21
  - name: Single filer at 300% FPL - linear increase to 8%
22
- period: 2028
22
+ period: 2026
23
23
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
24
24
  absolute_error_margin: 0.00001
25
25
  input:
@@ -29,7 +29,7 @@
29
29
  aca_ptc_phase_out_rate: 0.08
30
30
 
31
31
  - name: Single filer at 400% FPL - linear increase to 12%
32
- period: 2028
32
+ period: 2026
33
33
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
34
34
  absolute_error_margin: 0.00001
35
35
  input:
@@ -39,7 +39,7 @@
39
39
  aca_ptc_phase_out_rate: 0.12
40
40
 
41
41
  - name: Single filer at 500% FPL - linear increase to 16%
42
- period: 2028
42
+ period: 2026
43
43
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
44
44
  absolute_error_margin: 0.00001
45
45
  input:
@@ -49,7 +49,7 @@
49
49
  aca_ptc_phase_out_rate: 0.16
50
50
 
51
51
  - name: Single filer at 600% FPL - linear increase to 20%
52
- period: 2028
52
+ period: 2026
53
53
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
54
54
  absolute_error_margin: 0.00001
55
55
  input:
@@ -59,7 +59,7 @@
59
59
  aca_ptc_phase_out_rate: 0.20
60
60
 
61
61
  - name: Single filer at 150% FPL - interpolated value
62
- period: 2028
62
+ period: 2026
63
63
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
64
64
  absolute_error_margin: 0.00001
65
65
  input:
@@ -69,7 +69,7 @@
69
69
  aca_ptc_phase_out_rate: 0.02
70
70
 
71
71
  - name: Baseline comparison at 400% FPL - shows difference
72
- period: 2028
72
+ period: 2026
73
73
  absolute_error_margin: 0.00001
74
74
  input:
75
75
  aca_magi_fraction: 4.0
@@ -77,7 +77,7 @@
77
77
  aca_ptc_phase_out_rate: 0.0996
78
78
 
79
79
  - name: Edge case - Lower boundary at 0% FPL
80
- period: 2028
80
+ period: 2026
81
81
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
82
82
  absolute_error_margin: 0.00001
83
83
  input:
@@ -87,7 +87,7 @@
87
87
  aca_ptc_phase_out_rate: 0.0
88
88
 
89
89
  - name: Edge case - Upper boundary at 1000% FPL
90
- period: 2028
90
+ period: 2026
91
91
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
92
92
  absolute_error_margin: 0.00001
93
93
  input:
@@ -97,7 +97,7 @@
97
97
  aca_ptc_phase_out_rate: 0.36
98
98
 
99
99
  - name: Edge case - Interpolation between 1.0 and 2.0 at 175% FPL
100
- period: 2028
100
+ period: 2026
101
101
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
102
102
  absolute_error_margin: 0.00001
103
103
  input:
@@ -107,7 +107,7 @@
107
107
  aca_ptc_phase_out_rate: 0.03
108
108
 
109
109
  - name: Comparison with additional bracket reform at 600% FPL
110
- period: 2028
110
+ period: 2026
111
111
  reforms: policyengine_us.reforms.aca.aca_ptc_simplified_bracket.aca_ptc_simplified_bracket
112
112
  absolute_error_margin: 0.00001
113
113
  input:
@@ -59,48 +59,6 @@
59
59
  refundable_ctc: 0
60
60
  non_refundable_ctc: 500
61
61
 
62
-
63
- - name: Household with two children
64
- period: 2023
65
- reforms: policyengine_us.reforms.congress.tlaib.end_child_poverty_act.end_child_poverty_act
66
- input:
67
- # ECPA parameters.
68
- gov.contrib.congress.tlaib.end_child_poverty_act.in_effect: true
69
- # Household.
70
- people:
71
- head:
72
- age: 36
73
- is_tax_unit_head: True
74
- is_tax_unit_dependent: False
75
- employment_income: 21_000
76
- child_1:
77
- age: 10
78
- is_tax_unit_dependent: true
79
- child_2:
80
- age: 18
81
- is_tax_unit_dependent: true
82
- tax_units:
83
- tax_unit:
84
- members: [head, child_1, child_2]
85
- filing_status: HEAD_OF_HOUSEHOLD
86
- spm_units:
87
- spm_unit:
88
- members: [head, child_1, child_2]
89
- free_school_meals: 0
90
- snap: 0
91
- ca_capi: 0
92
- households:
93
- household:
94
- members: [head, child_1, child_2]
95
- state_code_str: FL # Florida has no TANF implementation
96
- output:
97
- ecpa_adult_dependent_credit: 0
98
- ecpa_child_benefit: 5_140 * 2
99
- ecpa_filer_credit: 550 # 600 - 0.05 * (21_000 - 20_000).
100
- non_refundable_ctc: 0
101
- household_benefits: 10_280
102
- spm_unit_benefits: 10_280
103
-
104
62
  - name: Baseline test, head of household with two children
105
63
  period: 2024
106
64
  input:
@@ -0,0 +1,154 @@
1
+ - name: Family with baby, children, and adults receives all benefits
2
+ period: 2026
3
+ reforms: policyengine_us.reforms.congress.tlaib.income_security_package.income_security_package
4
+ input:
5
+ gov.contrib.congress.tlaib.income_security_package.baby_bonus_act.in_effect: true
6
+ gov.contrib.congress.tlaib.income_security_package.boost_act.in_effect: true
7
+ gov.contrib.congress.tlaib.income_security_package.end_child_poverty_act.in_effect: true
8
+ people:
9
+ baby:
10
+ age: 0
11
+ child1:
12
+ age: 5
13
+ child2:
14
+ age: 10
15
+ adult_head:
16
+ age: 35
17
+ adult_spouse:
18
+ age: 33
19
+ adult_dependent:
20
+ age: 20
21
+ is_tax_unit_dependent: true
22
+ tax_units:
23
+ tax_unit:
24
+ members: [adult_head, adult_spouse, baby, child1, child2, adult_dependent]
25
+ filing_status: JOINT
26
+ adjusted_gross_income: 45_000 # 5,000 above phase-out start
27
+ output:
28
+ # Baby Bonus
29
+ baby_bonus_act_payment:
30
+ 2026: [2_000, 0, 0, 0, 0, 0] # Only baby gets bonus
31
+ # ECPA Child Benefit
32
+ ecpa_child_benefit:
33
+ 2026: [5_630, 5_630, 5_630, 0, 0, 0] # All children under 19
34
+ # ECPA Adult Dependent Credit
35
+ ecpa_adult_dependent_credit:
36
+ 2026: [0, 0, 0, 0, 0, 700] # Only adult dependent
37
+ # BOOST Payment
38
+ boost_act_payment:
39
+ 2026: [0, 0, 0, 3_000, 3_000, 3_000] # Adults 19-67
40
+ # ECPA Filer Credit (at tax unit level)
41
+ ecpa_filer_credit:
42
+ 2026: 1_150 # 1,400 - (5,000 * 0.05)
43
+ # BOOST Tax (at tax unit level)
44
+ boost_act_tax:
45
+ 2026: 0 # Below 60,000 threshold for joint
46
+
47
+ - name: Single parent with high income
48
+ period: 2026
49
+ reforms: policyengine_us.reforms.congress.tlaib.income_security_package.income_security_package
50
+ input:
51
+ gov.contrib.congress.tlaib.income_security_package.baby_bonus_act.in_effect: true
52
+ gov.contrib.congress.tlaib.income_security_package.boost_act.in_effect: true
53
+ gov.contrib.congress.tlaib.income_security_package.end_child_poverty_act.in_effect: true
54
+ people:
55
+ parent:
56
+ age: 40
57
+ child:
58
+ age: 8
59
+ tax_units:
60
+ tax_unit:
61
+ members: [parent, child]
62
+ filing_status: HEAD_OF_HOUSEHOLD
63
+ adjusted_gross_income: 80_000
64
+ output:
65
+ # No baby bonus (child too old)
66
+ baby_bonus_act_payment:
67
+ 2026: [0, 0]
68
+ # Child benefit
69
+ ecpa_child_benefit:
70
+ 2026: [0, 5_630]
71
+ # BOOST payment for parent
72
+ boost_act_payment:
73
+ 2026: [3_000, 0]
74
+ # ECPA filer credit fully phased out
75
+ ecpa_filer_credit:
76
+ 2026: 0 # 700 - (60,000 * 0.05) = -2,300, max to 0
77
+ # BOOST tax on high income
78
+ boost_act_tax:
79
+ 2026: 1_250 # (80,000 - 30,000) * 0.025
80
+
81
+ - name: Senior couple with adult dependent
82
+ period: 2026
83
+ reforms: policyengine_us.reforms.congress.tlaib.income_security_package.income_security_package
84
+ input:
85
+ gov.contrib.congress.tlaib.income_security_package.baby_bonus_act.in_effect: true
86
+ gov.contrib.congress.tlaib.income_security_package.boost_act.in_effect: true
87
+ gov.contrib.congress.tlaib.income_security_package.end_child_poverty_act.in_effect: true
88
+ people:
89
+ senior1:
90
+ age: 68
91
+ senior2:
92
+ age: 70
93
+ adult_dependent:
94
+ age: 40
95
+ is_tax_unit_dependent: true
96
+ tax_units:
97
+ tax_unit:
98
+ members: [senior1, senior2, adult_dependent]
99
+ filing_status: JOINT
100
+ adjusted_gross_income: 35_000
101
+ output:
102
+ # No baby bonus
103
+ baby_bonus_act_payment:
104
+ 2026: [0, 0, 0]
105
+ # No child benefit (all adults)
106
+ ecpa_child_benefit:
107
+ 2026: [0, 0, 0]
108
+ # Adult dependent credit
109
+ ecpa_adult_dependent_credit:
110
+ 2026: [0, 0, 700]
111
+ # BOOST payment only for adult dependent (seniors too old)
112
+ boost_act_payment:
113
+ 2026: [0, 0, 3_000]
114
+ # No filer credit (seniors over 64)
115
+ ecpa_filer_credit:
116
+ 2026: 0
117
+ # No BOOST tax (below threshold)
118
+ boost_act_tax:
119
+ 2026: 0
120
+
121
+ - name: Young adult living alone
122
+ period: 2026
123
+ reforms: policyengine_us.reforms.congress.tlaib.income_security_package.income_security_package
124
+ input:
125
+ gov.contrib.congress.tlaib.income_security_package.baby_bonus_act.in_effect: true
126
+ gov.contrib.congress.tlaib.income_security_package.boost_act.in_effect: true
127
+ gov.contrib.congress.tlaib.income_security_package.end_child_poverty_act.in_effect: true
128
+ people:
129
+ young_adult:
130
+ age: 19
131
+ tax_units:
132
+ tax_unit:
133
+ members: [young_adult]
134
+ filing_status: SINGLE
135
+ adjusted_gross_income: 12_000
136
+ output:
137
+ # No baby bonus
138
+ baby_bonus_act_payment:
139
+ 2026: 0
140
+ # No child benefit (19 or over)
141
+ ecpa_child_benefit:
142
+ 2026: 0
143
+ # Not a dependent
144
+ ecpa_adult_dependent_credit:
145
+ 2026: 0
146
+ # Gets BOOST payment
147
+ boost_act_payment:
148
+ 2026: 3_000
149
+ # Gets filer credit
150
+ ecpa_filer_credit:
151
+ 2026: 700 # No phase-out
152
+ # No BOOST tax (below threshold)
153
+ boost_act_tax:
154
+ 2026: 0
@@ -0,0 +1,115 @@
1
+ # Essential state credit integration tests
2
+ # Tests that federal CTC/EITC are calculated for state reference but not applied federally
3
+
4
+ - name: Oklahoma family - state credits reference federal calculations
5
+ period: 2026
6
+ reforms: policyengine_us.reforms.congress.tlaib.income_security_package.income_security_package
7
+ absolute_error_margin: 1
8
+ input:
9
+ gov.contrib.congress.tlaib.income_security_package.baby_bonus_act.in_effect: true
10
+ gov.contrib.congress.tlaib.income_security_package.boost_act.in_effect: true
11
+ gov.contrib.congress.tlaib.income_security_package.end_child_poverty_act.in_effect: true
12
+ people:
13
+ parent1:
14
+ age: 35
15
+ employment_income: 30_000
16
+ parent2:
17
+ age: 33
18
+ employment_income: 20_000
19
+ newborn:
20
+ age: 0
21
+ birth_year: 2026
22
+ child:
23
+ age: 8
24
+ birth_year: 2018
25
+ adult_dependent:
26
+ age: 19
27
+ birth_year: 2007
28
+ is_full_time_student: true
29
+ tax_units:
30
+ tax_unit:
31
+ members: [parent1, parent2, newborn, child, adult_dependent]
32
+ filing_status: JOINT
33
+ households:
34
+ household:
35
+ members: [parent1, parent2, newborn, child, adult_dependent]
36
+ state_code: OK
37
+ output:
38
+ # Federal CTC/EITC calculated for state reference
39
+ ctc:
40
+ 2026: 4_900 # $2,200 per child + $500 other dependent
41
+ eitc:
42
+ 2026: 4_225.342 # Joint, 2 children, $50k income
43
+
44
+ # Oklahoma credits (5% of federal)
45
+ ok_child_care_child_tax_credit:
46
+ 2026: 245 # 5% of $4,900
47
+ ok_eitc:
48
+ 2026: 72.07
49
+
50
+ # Income Security Package benefits
51
+ baby_bonus_act_payment:
52
+ 2026: [0, 0, 2_000, 0, 0]
53
+ ecpa_child_benefit:
54
+ 2026: [0, 0, 5_630, 5_630, 0]
55
+ ecpa_adult_dependent_credit:
56
+ 2026: [0, 0, 0, 0, 700]
57
+ ecpa_filer_credit:
58
+ 2026: 900 # $1,400 - ($50k - $40k) * 0.05
59
+ boost_act_payment:
60
+ 2026: [3_000, 3_000, 0, 0, 3_000]
61
+
62
+ # Federal refundable credits exclude CTC/EITC
63
+ income_tax_refundable_credits:
64
+ 2026: 1_600 # ECPA filer ($900) + adult dependent ($700)
65
+
66
+ - name: Maine single parent - state EITC percentage of federal
67
+ period: 2026
68
+ reforms: policyengine_us.reforms.congress.tlaib.income_security_package.income_security_package
69
+ absolute_error_margin: 1
70
+ input:
71
+ gov.contrib.congress.tlaib.income_security_package.baby_bonus_act.in_effect: true
72
+ gov.contrib.congress.tlaib.income_security_package.boost_act.in_effect: true
73
+ gov.contrib.congress.tlaib.income_security_package.end_child_poverty_act.in_effect: true
74
+ people:
75
+ parent:
76
+ age: 28
77
+ employment_income: 25_000
78
+ child1:
79
+ age: 3
80
+ birth_year: 2023
81
+ child2:
82
+ age: 10
83
+ birth_year: 2016
84
+ tax_units:
85
+ tax_unit:
86
+ members: [parent, child1, child2]
87
+ filing_status: HEAD_OF_HOUSEHOLD
88
+ households:
89
+ household:
90
+ members: [parent, child1, child2]
91
+ state_code: ME
92
+ output:
93
+ # Federal calculations
94
+ ctc:
95
+ 2026: 4_400
96
+ eitc:
97
+ 2026: 7_055.704
98
+
99
+ # Maine EITC is 25% of federal
100
+ me_eitc:
101
+ 2026: 1_763.926
102
+
103
+ # Income Security Package
104
+ baby_bonus_act_payment:
105
+ 2026: [0, 0, 0]
106
+ ecpa_child_benefit:
107
+ 2026: [0, 5_630, 5_630]
108
+ ecpa_filer_credit:
109
+ 2026: 450 # $700 - ($25k - $20k) * 0.05
110
+ boost_act_payment:
111
+ 2026: [3_000, 0, 0]
112
+
113
+ # Federal credits exclude EITC/CTC
114
+ income_tax_refundable_credits:
115
+ 2026: 450