taxcalc 4.2.1__py3-none-any.whl → 4.3.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.
Files changed (123) hide show
  1. taxcalc/__init__.py +1 -1
  2. taxcalc/assumptions/ASSUMPTIONS.md +53 -0
  3. taxcalc/assumptions/README.md +17 -0
  4. taxcalc/assumptions/economic_assumptions_template.json +77 -0
  5. taxcalc/calcfunctions.py +7 -4
  6. taxcalc/data.py +10 -5
  7. taxcalc/policy.py +1 -1
  8. taxcalc/policy_current_law.json +4649 -288
  9. taxcalc/records.py +20 -15
  10. taxcalc/reforms/2017_law.json +125 -0
  11. taxcalc/reforms/2017_law.out.csv +10 -0
  12. taxcalc/reforms/ARPA.json +78 -0
  13. taxcalc/reforms/ARPA.out.csv +10 -0
  14. taxcalc/reforms/BrownKhanna.json +23 -0
  15. taxcalc/reforms/BrownKhanna.out.csv +10 -0
  16. taxcalc/reforms/CARES.json +40 -0
  17. taxcalc/reforms/CARES.out.csv +10 -0
  18. taxcalc/reforms/ConsolidatedAppropriationsAct2021.json +15 -0
  19. taxcalc/reforms/ConsolidatedAppropriationsAct2021.out.csv +10 -0
  20. taxcalc/reforms/Larson2019.json +36 -0
  21. taxcalc/reforms/Larson2019.out.csv +10 -0
  22. taxcalc/reforms/README.md +22 -0
  23. taxcalc/reforms/REFORMS.md +92 -0
  24. taxcalc/reforms/Renacci.json +61 -0
  25. taxcalc/reforms/Renacci.out.csv +10 -0
  26. taxcalc/reforms/SandersDeFazio.json +15 -0
  27. taxcalc/reforms/SandersDeFazio.out.csv +10 -0
  28. taxcalc/reforms/TCJA.json +160 -0
  29. taxcalc/reforms/TCJA.md +48 -0
  30. taxcalc/reforms/TCJA.out.csv +10 -0
  31. taxcalc/reforms/Trump2016.json +71 -0
  32. taxcalc/reforms/Trump2016.out.csv +10 -0
  33. taxcalc/reforms/Trump2017.json +51 -0
  34. taxcalc/reforms/Trump2017.out.csv +10 -0
  35. taxcalc/reforms/archive/Clinton2016.json +56 -0
  36. taxcalc/reforms/archive/RyanBrady.json +104 -0
  37. taxcalc/reforms/archive/TCJA_House.json +144 -0
  38. taxcalc/reforms/archive/TCJA_House_Amended.json +152 -0
  39. taxcalc/reforms/archive/TCJA_Reconciliation.json +187 -0
  40. taxcalc/reforms/archive/TCJA_Senate.json +116 -0
  41. taxcalc/reforms/archive/TCJA_Senate_111417.json +169 -0
  42. taxcalc/reforms/archive/TCJA_Senate_120117.json +174 -0
  43. taxcalc/reforms/cases.csv +10 -0
  44. taxcalc/reforms/clp.out.csv +10 -0
  45. taxcalc/reforms/ext.json +59 -0
  46. taxcalc/reforms/growfactors_ext.csv +65 -0
  47. taxcalc/reforms/ptaxes0.json +37 -0
  48. taxcalc/reforms/ptaxes0.out.csv +10 -0
  49. taxcalc/reforms/ptaxes1.json +21 -0
  50. taxcalc/reforms/ptaxes1.out.csv +10 -0
  51. taxcalc/reforms/ptaxes2.json +18 -0
  52. taxcalc/reforms/ptaxes2.out.csv +10 -0
  53. taxcalc/reforms/ptaxes3.json +28 -0
  54. taxcalc/reforms/ptaxes3.out.csv +10 -0
  55. taxcalc/taxcalcio.py +44 -22
  56. taxcalc/tests/benefits_expect.csv +169 -0
  57. taxcalc/tests/cmpi_cps_expect.txt +132 -0
  58. taxcalc/tests/cmpi_puf_expect.txt +132 -0
  59. taxcalc/tests/conftest.py +143 -0
  60. taxcalc/tests/cpscsv_agg_expect.csv +26 -0
  61. taxcalc/tests/puf_var_correl_coeffs_2016.csv +80 -0
  62. taxcalc/tests/puf_var_wght_means_by_year.csv +80 -0
  63. taxcalc/tests/pufcsv_agg_expect.csv +26 -0
  64. taxcalc/tests/pufcsv_mtr_expect.txt +63 -0
  65. taxcalc/tests/reforms.json +649 -0
  66. taxcalc/tests/reforms_expect.csv +65 -0
  67. taxcalc/tests/test_4package.py +67 -0
  68. taxcalc/tests/test_benefits.py +86 -0
  69. taxcalc/tests/test_calcfunctions.py +871 -0
  70. taxcalc/tests/test_calculator.py +1021 -0
  71. taxcalc/tests/test_compare.py +336 -0
  72. taxcalc/tests/test_compatible_data.py +338 -0
  73. taxcalc/tests/test_consumption.py +144 -0
  74. taxcalc/tests/test_cpscsv.py +163 -0
  75. taxcalc/tests/test_data.py +133 -0
  76. taxcalc/tests/test_decorators.py +332 -0
  77. taxcalc/tests/test_growdiff.py +102 -0
  78. taxcalc/tests/test_growfactors.py +94 -0
  79. taxcalc/tests/test_parameters.py +617 -0
  80. taxcalc/tests/test_policy.py +1557 -0
  81. taxcalc/tests/test_puf_var_stats.py +194 -0
  82. taxcalc/tests/test_pufcsv.py +385 -0
  83. taxcalc/tests/test_records.py +234 -0
  84. taxcalc/tests/test_reforms.py +386 -0
  85. taxcalc/tests/test_responses.py +41 -0
  86. taxcalc/tests/test_taxcalcio.py +755 -0
  87. taxcalc/tests/test_utils.py +792 -0
  88. taxcalc/validation/CSV_INPUT_VARS.md +29 -0
  89. taxcalc/validation/CSV_OUTPUT_VARS.md +63 -0
  90. taxcalc/validation/README.md +68 -0
  91. taxcalc/validation/taxsim35/Differences_Explained.md +54 -0
  92. taxcalc/validation/taxsim35/README.md +139 -0
  93. taxcalc/validation/taxsim35/expected_differences/a17-taxdiffs-expect.csv +25 -0
  94. taxcalc/validation/taxsim35/expected_differences/a18-taxdiffs-expect.csv +25 -0
  95. taxcalc/validation/taxsim35/expected_differences/a19-taxdiffs-expect.csv +25 -0
  96. taxcalc/validation/taxsim35/expected_differences/a20-taxdiffs-expect.csv +25 -0
  97. taxcalc/validation/taxsim35/expected_differences/a21-taxdiffs-expect.csv +25 -0
  98. taxcalc/validation/taxsim35/expected_differences/b17-taxdiffs-expect.csv +25 -0
  99. taxcalc/validation/taxsim35/expected_differences/b18-taxdiffs-expect.csv +25 -0
  100. taxcalc/validation/taxsim35/expected_differences/b19-taxdiffs-expect.csv +25 -0
  101. taxcalc/validation/taxsim35/expected_differences/b20-taxdiffs-expect.csv +25 -0
  102. taxcalc/validation/taxsim35/expected_differences/b21-taxdiffs-expect.csv +25 -0
  103. taxcalc/validation/taxsim35/expected_differences/c17-taxdiffs-expect.csv +25 -0
  104. taxcalc/validation/taxsim35/expected_differences/c18-taxdiffs-expect.csv +25 -0
  105. taxcalc/validation/taxsim35/expected_differences/c19-taxdiffs-expect.csv +25 -0
  106. taxcalc/validation/taxsim35/input_setup.py +67 -0
  107. taxcalc/validation/taxsim35/main_comparison.py +183 -0
  108. taxcalc/validation/taxsim35/prepare_taxcalc_input.py +161 -0
  109. taxcalc/validation/taxsim35/process_taxcalc_output.py +140 -0
  110. taxcalc/validation/taxsim35/taxsim_emulation.json +49 -0
  111. taxcalc/validation/taxsim35/taxsim_input.py +321 -0
  112. taxcalc/validation/taxsim35/tc_sims.py +98 -0
  113. taxcalc/validation/taxsim35/tests_35.py +80 -0
  114. taxcalc/validation/tests_35.sh +13 -0
  115. {taxcalc-4.2.1.dist-info → taxcalc-4.3.0.dist-info}/METADATA +3 -4
  116. taxcalc-4.3.0.dist-info/RECORD +139 -0
  117. {taxcalc-4.2.1.dist-info → taxcalc-4.3.0.dist-info}/WHEEL +1 -1
  118. taxcalc/tmd_growfactors.csv +0 -55
  119. taxcalc/tmd_weights.csv.gz +0 -0
  120. taxcalc-4.2.1.dist-info/RECORD +0 -34
  121. {taxcalc-4.2.1.dist-info → taxcalc-4.3.0.dist-info}/LICENSE +0 -0
  122. {taxcalc-4.2.1.dist-info → taxcalc-4.3.0.dist-info}/entry_points.txt +0 -0
  123. {taxcalc-4.2.1.dist-info → taxcalc-4.3.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,649 @@
1
+ {
2
+ "1": {
3
+ "baseline": "2017_law.json",
4
+ "start_year": 2015,
5
+ "value": {"FICA_ss_trt_employer": 0.067,
6
+ "FICA_ss_trt_employee": 0.067},
7
+ "name": "Increase OASDI payroll tax rate by 1 pts, split evenly on employer and employee sides",
8
+ "output_type": "payrolltax",
9
+ "compare_with": {}
10
+ },
11
+
12
+ "2": {
13
+ "baseline": "2017_law.json",
14
+ "start_year": 2015,
15
+ "value": {"SS_Earnings_c": 177500},
16
+ "name": "Increase OASDI maximum taxable earnings to $177,500",
17
+ "output_type": "payrolltax",
18
+ "compare_with": {"Budget Options": [40, 46, 49, 51]}
19
+ },
20
+
21
+ "3": {
22
+ "baseline": "2017_law.json",
23
+ "start_year": 2015,
24
+ "value": {"FICA_mc_trt_employer": 0.0195,
25
+ "FICA_mc_trt_employee": 0.0195},
26
+ "name": "Increase HI payroll tax rate by 1 pts",
27
+ "output_type": "payrolltax",
28
+ "compare_with": {"Budget Options": [73, 77, 82, 87]}
29
+ },
30
+
31
+ "4": {
32
+ "baseline": "2017_law.json",
33
+ "start_year": 2015,
34
+ "value": {"AMEDT_ec": [210000, 260000, 135000, 210000, 210000]},
35
+ "name": "Increase Additional Medicare Tax exclusion by $10,000",
36
+ "output_type": "payrolltax",
37
+ "compare_with": {}
38
+ },
39
+
40
+ "5": {
41
+ "baseline": "2017_law.json",
42
+ "start_year": 2015,
43
+ "value": {"AMEDT_rt": 0.01},
44
+ "name": "Increase Additional Medicare Tax rate by 0.1 pts",
45
+ "output_type": "payrolltax",
46
+ "compare_with": {}
47
+ },
48
+
49
+ "6": {
50
+ "baseline": "2017_law.json",
51
+ "start_year": 2015,
52
+ "value": {"SS_thd50": [0, 0, 0, 0, 0],
53
+ "SS_thd85": [0, 0, 0, 0, 0],
54
+ "SS_percentage1": 1,
55
+ "SS_percentage2": 1},
56
+ "name": "All OASDI benefits included in AGI",
57
+ "output_type": "iitax",
58
+ "compare_with": {"Tax Expenditure": [39.3, 41.5, 44.1, 46.8],
59
+ "Budget Options": [35, 37, 38, 40]}
60
+ },
61
+
62
+ "7": {
63
+ "baseline": "2017_law.json",
64
+ "start_year": 2015,
65
+ "value": {"ALD_KEOGH_SEP_hc": 1},
66
+ "name": "No deduction for KEOGH/SEP contributions",
67
+ "output_type": "iitax",
68
+ "compare_with": {"Tax Expenditure": [8.7, 10.0, 11.4, 16.2]}
69
+ },
70
+
71
+ "8": {
72
+ "baseline": "2017_law.json",
73
+ "start_year": 2015,
74
+ "value": {"ALD_StudentLoan_hc": 1},
75
+ "name": "No deduction for student-loan interest",
76
+ "output_type": "iitax",
77
+ "compare_with": {"Tax Expenditure": [1.8, 1.9, 1.9, 2.1]}
78
+ },
79
+
80
+ "9": {
81
+ "baseline": "2017_law.json",
82
+ "start_year": 2015,
83
+ "value": {"ALD_SelfEmploymentTax_hc": 1},
84
+ "name": "Eliminate adjustment for self-employment tax",
85
+ "output_type": "iitax",
86
+ "compare_with": {}
87
+ },
88
+
89
+ "10": {
90
+ "baseline": "2017_law.json",
91
+ "start_year": 2015,
92
+ "value": {"ALD_SelfEmp_HealthIns_hc": 1},
93
+ "name": "Eliminate adjustment for self-employed health insurance",
94
+ "output_type": "iitax",
95
+ "compare_with": {}
96
+ },
97
+
98
+ "11": {
99
+ "baseline": "2017_law.json",
100
+ "start_year": 2015,
101
+ "value": {"ALD_AlimonyPaid_hc": 1},
102
+ "name": "Eliminate AGI adjustment for alimony paid",
103
+ "output_type": "iitax",
104
+ "compare_with": {}
105
+ },
106
+
107
+ "12": {
108
+ "baseline": "2017_law.json",
109
+ "start_year": 2015,
110
+ "value": {"ALD_EarlyWithdraw_hc": 1},
111
+ "name": "Eliminate adjustment for forfeited interest penalty",
112
+ "output_type": "iitax",
113
+ "compare_with": {}
114
+ },
115
+
116
+ "13": {
117
+ "baseline": "2017_law.json",
118
+ "start_year": 2015,
119
+ "value": {"II_em": 5000},
120
+ "name": "Increase personal and dependent exemption amount by $1000",
121
+ "output_type": "iitax",
122
+ "compare_with": {}
123
+ },
124
+
125
+ "14": {
126
+ "baseline": "2017_law.json",
127
+ "start_year": 2015,
128
+ "value": {"II_em_ps": [268250, 319900, 164950, 294040, 319900]},
129
+ "name": "Increase personal exemption phaseout starting AGI by $10,000",
130
+ "output_type": "iitax",
131
+ "compare_with": {}
132
+ },
133
+
134
+ "15": {
135
+ "baseline": "2017_law.json",
136
+ "start_year": 2015,
137
+ "value": {"II_prt": 0.03},
138
+ "name": "Increase personal exemption phaseout rate by 1 pts",
139
+ "output_type": "iitax",
140
+ "compare_with": {}
141
+ },
142
+
143
+ "16": {
144
+ "baseline": "2017_law.json",
145
+ "start_year": 2015,
146
+ "value": {"STD": [6400, 12700, 6400, 9350, 12700]},
147
+ "name": "Increase standard deduction by $100",
148
+ "output_type": "iitax",
149
+ "compare_with": {}
150
+ },
151
+
152
+ "17": {
153
+ "baseline": "2017_law.json",
154
+ "start_year": 2015,
155
+ "value": {"STD_Aged": [1650, 1350, 1350, 1650, 1650]},
156
+ "name": "Increase additional stdded for aged/blind by $100",
157
+ "output_type": "iitax",
158
+ "compare_with": {}
159
+ },
160
+
161
+ "18": {
162
+ "baseline": "2017_law.json",
163
+ "start_year": 2015,
164
+ "value": {"ID_RealEstate_hc": 1},
165
+ "name": "Eliminate real estate itemded",
166
+ "output_type": "iitax",
167
+ "compare_with": {"Tax Expenditure": [34.0, 36.4, 38.8, 41.0]}
168
+ },
169
+
170
+ "19": {
171
+ "baseline": "2017_law.json",
172
+ "start_year": 2015,
173
+ "value": {"ID_InterestPaid_hc": 1},
174
+ "name": "Eliminate interest-paid itemded",
175
+ "output_type": "iitax",
176
+ "compare_with": {"Tax Expenditure": [74.8, 81.6, 87.8, 93.2]}
177
+ },
178
+
179
+ "20": {
180
+ "baseline": "2017_law.json",
181
+ "start_year": 2015,
182
+ "value": {"ID_StateLocalTax_hc": 1,
183
+ "ID_RealEstate_hc": 1},
184
+ "name": "Eliminate both real-estate and state-local-tax itemded",
185
+ "output_type": "iitax",
186
+ "compare_with": {"Tax Expenditure": [74.8, 81.6, 87.8, 93.2]}
187
+ },
188
+
189
+ "21": {
190
+ "baseline": "2017_law.json",
191
+ "start_year": 2015,
192
+ "value": {"ID_StateLocalTax_hc": 1},
193
+ "name": "Eliminate state-local-tax itemded",
194
+ "output_type": "iitax",
195
+ "compare_with": {"Tax Expenditure": [59.2, 63.0, 66.9, 70.7]}
196
+ },
197
+
198
+ "22": {
199
+ "baseline": "2017_law.json",
200
+ "start_year": 2015,
201
+ "value": {"ID_Medical_hc": 1},
202
+ "name": "Eliminate medical itemded",
203
+ "output_type": "iitax",
204
+ "compare_with": {"Tax Expenditure": [11.0, 12.4, 12.7, 13.9]}
205
+ },
206
+
207
+ "23": {
208
+ "baseline": "2017_law.json",
209
+ "start_year": 2015,
210
+ "value": {"ID_Casualty_hc": 1},
211
+ "name": "Eliminate casualty itemded",
212
+ "output_type": "iitax",
213
+ "compare_with": {"Tax Expenditure": [0.4, 0.5, 0.5, 0.5]}
214
+ },
215
+
216
+ "24": {
217
+ "baseline": "2017_law.json",
218
+ "start_year": 2015,
219
+ "value": {"ID_Charity_hc": 1},
220
+ "name": "Eliminate charity itemded",
221
+ "output_type": "iitax",
222
+ "compare_with": {"Tax Expenditure": [45.6, 47.0, 48.5, 50.1]}
223
+ },
224
+
225
+ "25": {
226
+ "baseline": "2017_law.json",
227
+ "start_year": 2015,
228
+ "value": {"ID_Miscellaneous_frt": 0.03},
229
+ "name": "Increase AGI floor for miscellaneous itemded by 1 pts",
230
+ "output_type": "iitax",
231
+ "compare_with": {}
232
+ },
233
+
234
+ "26": {
235
+ "baseline": "2017_law.json",
236
+ "start_year": 2015,
237
+ "value": {"ID_crt": 0.9},
238
+ "name": "Increase itemded maximum phaseout from 80% to 90%",
239
+ "output_type": "iitax",
240
+ "compare_with": {}
241
+ },
242
+
243
+ "27": {
244
+ "baseline": "2017_law.json",
245
+ "start_year": 2015,
246
+ "value": {"ID_ps": [248250, 299900, 144950, 274050, 299900]},
247
+ "name": "Increase itemded phaseout starting AGI by $10,000",
248
+ "output_type": "iitax",
249
+ "compare_with": {}
250
+ },
251
+
252
+ "28": {
253
+ "baseline": "2017_law.json",
254
+ "start_year": 2015,
255
+ "value": {"ID_prt": 0.04},
256
+ "name": "Increase itemded phaseout rate by 1 pts",
257
+ "output_type": "iitax",
258
+ "compare_with": {}
259
+ },
260
+
261
+ "29": {
262
+ "baseline": "2017_law.json",
263
+ "start_year": 2015,
264
+ "value": {"ID_BenefitSurtax_crt": 0.06,
265
+ "ID_BenefitSurtax_trt": 1},
266
+ "name": "Limit tax value of itemded to 6% of AGI",
267
+ "output_type": "iitax",
268
+ "compare_with": {"Budget Options": [11, 9, 8, 7]}
269
+ },
270
+
271
+ "30": {
272
+ "baseline": "2017_law.json",
273
+ "start_year": 2015,
274
+ "value": {"CG_rt1": 0.02,
275
+ "CG_rt2": 0.17,
276
+ "CG_rt3": 0.22,
277
+ "AMT_CG_rt1": 0.02,
278
+ "AMT_CG_rt2": 0.17,
279
+ "AMT_CG_rt3": 0.22},
280
+ "name": "Raise LTCG/QDIV tax rates by 2 pts",
281
+ "output_type": "iitax",
282
+ "compare_with": {}
283
+ },
284
+
285
+ "31": {
286
+ "baseline": "policy_current_law.json",
287
+ "start_year": 2016,
288
+ "value": {"ODC_c": 600},
289
+ "name": "Increase Other-Dependent Credit to $600",
290
+ "output_type": "iitax",
291
+ "compare_with": {}
292
+ },
293
+
294
+ "32": {
295
+ "baseline": "2017_law.json",
296
+ "start_year": 2015,
297
+ "value": {"II_rt1": 0.11,
298
+ "II_rt2": 0.16,
299
+ "II_rt3": 0.26,
300
+ "II_rt4": 0.29,
301
+ "II_rt5": 0.34,
302
+ "II_rt6": 0.36,
303
+ "II_rt7": 0.406,
304
+ "PT_rt1": 0.11,
305
+ "PT_rt2": 0.16,
306
+ "PT_rt3": 0.26,
307
+ "PT_rt4": 0.29,
308
+ "PT_rt5": 0.34,
309
+ "PT_rt6": 0.36,
310
+ "PT_rt7": 0.406},
311
+ "name": "Increase tax rate in each bracket by 1 pts",
312
+ "output_type": "iitax",
313
+ "compare_with": {"Budget Options": [56, 60, 65, 69]}
314
+ },
315
+
316
+ "33": {
317
+ "baseline": "2017_law.json",
318
+ "start_year": 2015,
319
+ "value": {"II_rt1": 0.10,
320
+ "II_rt2": 0.15,
321
+ "II_rt3": 0.25,
322
+ "II_rt4": 0.29,
323
+ "II_rt5": 0.34,
324
+ "II_rt6": 0.36,
325
+ "II_rt7": 0.406,
326
+ "PT_rt1": 0.10,
327
+ "PT_rt2": 0.15,
328
+ "PT_rt3": 0.25,
329
+ "PT_rt4": 0.29,
330
+ "PT_rt5": 0.34,
331
+ "PT_rt6": 0.36,
332
+ "PT_rt7": 0.406},
333
+ "name": "Increase top four rates by 1 pts",
334
+ "output_type": "iitax",
335
+ "compare_with": {"Budget Options": [11, 12, 14, 15]}
336
+ },
337
+
338
+ "34": {
339
+ "baseline": "2017_law.json",
340
+ "start_year": 2015,
341
+ "value": {"II_rt1": 0.10,
342
+ "II_rt2": 0.15,
343
+ "II_rt3": 0.25,
344
+ "II_rt4": 0.28,
345
+ "II_rt5": 0.33,
346
+ "II_rt6": 0.36,
347
+ "II_rt7": 0.406,
348
+ "PT_rt1": 0.10,
349
+ "PT_rt2": 0.15,
350
+ "PT_rt3": 0.25,
351
+ "PT_rt4": 0.28,
352
+ "PT_rt5": 0.33,
353
+ "PT_rt6": 0.36,
354
+ "PT_rt7": 0.406},
355
+ "name": "Increase top two rates by 1 pts",
356
+ "output_type": "iitax",
357
+ "compare_with": {"Budget Options": [7, 8, 9, 10]}
358
+ },
359
+
360
+ "35": {
361
+ "baseline": "2017_law.json",
362
+ "start_year": 2015,
363
+ "value": {"AMT_em": [54600, 84400, 42700, 54600, 84400]},
364
+ "name": "Increase AMT exemption amount by $1000",
365
+ "output_type": "iitax",
366
+ "compare_with": {}
367
+ },
368
+
369
+ "36": {
370
+ "baseline": "2017_law.json",
371
+ "start_year": 2015,
372
+ "value": {"AMT_em_ps": [129200, 168900, 89450, 129200, 168900]},
373
+ "name": "Increase AMT exemption phaseout starting AMTI by $10,000",
374
+ "output_type": "iitax",
375
+ "compare_with": {}
376
+ },
377
+
378
+ "37": {
379
+ "baseline": "2017_law.json",
380
+ "start_year": 2015,
381
+ "value": {"AMT_prt": 0.27},
382
+ "name": "Increase AMT exemption phaseout rate by 2 pts",
383
+ "output_type": "iitax",
384
+ "compare_with": {}
385
+ },
386
+
387
+ "38": {
388
+ "baseline": "2017_law.json",
389
+ "start_year": 2015,
390
+ "value": {"AMT_rt1": 0.28},
391
+ "name": "Increase AMT rate under the surtax threshold by 2 pts",
392
+ "output_type": "iitax",
393
+ "compare_with": {}
394
+ },
395
+
396
+ "39": {
397
+ "baseline": "2017_law.json",
398
+ "start_year": 2015,
399
+ "value": {"AMT_rt2": 0.04},
400
+ "name": "Increase AMT rate above the surtax threshold by 2 pts",
401
+ "output_type": "iitax",
402
+ "compare_with": {}
403
+ },
404
+
405
+ "40": {
406
+ "baseline": "2017_law.json",
407
+ "start_year": 2015,
408
+ "value": {"AMT_brk1": 195400},
409
+ "name": "Increase AMT surtax threshold by $10,000",
410
+ "output_type": "iitax",
411
+ "compare_with": {}
412
+ },
413
+
414
+ "41": {
415
+ "baseline": "2017_law.json",
416
+ "start_year": 2015,
417
+ "value": {"CTC_c": 0, "ACTC_c": 0},
418
+ "name": "Eliminate child tax credit",
419
+ "output_type": "iitax",
420
+ "compare_with": {"Tax Expenditure": [57.3, 57.0, 57.1, 56.8]}
421
+ },
422
+
423
+ "42": {
424
+ "baseline": "2017_law.json",
425
+ "start_year": 2015,
426
+ "value": {"CTC_prt": 0.06},
427
+ "name": "Increase child tax credit phaseout rate by 1 pts",
428
+ "output_type": "iitax",
429
+ "compare_with": {}
430
+ },
431
+
432
+ "43": {
433
+ "baseline": "2017_law.json",
434
+ "start_year": 2015,
435
+ "value": {"CTC_ps": [76000, 111000, 56000, 76000, 76000]},
436
+ "name": "Increase child tax credit phaseout starting MAGI by $1000",
437
+ "output_type": "iitax",
438
+ "compare_with": {}
439
+ },
440
+
441
+ "44": {
442
+ "baseline": "2017_law.json",
443
+ "start_year": 2015,
444
+ "value": {"EITC_rt": [0, 0, 0, 0]},
445
+ "name": "Total EITC cost",
446
+ "output_type": "iitax",
447
+ "compare_with": {"Tax Expenditure": [70.4, 71.1, 72.2, 69.9]}
448
+ },
449
+
450
+ "45": {
451
+ "baseline": "2017_law.json",
452
+ "start_year": 2015,
453
+ "value": {"EITC_prt": [0.0865, 0.1698, 0.2206, 0.2206]},
454
+ "name": "Increase EITC phaseout rate by 1 pts",
455
+ "output_type": "iitax",
456
+ "compare_with": {}
457
+ },
458
+
459
+ "46": {
460
+ "baseline": "2017_law.json",
461
+ "start_year": 2015,
462
+ "value": {"EITC_ps": [9240, 19110, 19110, 19110]},
463
+ "name": "Increase EITC phaseout starting AGI by $1000",
464
+ "output_type": "iitax",
465
+ "compare_with": {}
466
+ },
467
+
468
+ "47": {
469
+ "baseline": "2017_law.json",
470
+ "start_year": 2015,
471
+ "value": {"EITC_c": [603, 3459, 5648, 6342]},
472
+ "name": "Increase maximum EITC amount by $100",
473
+ "output_type": "iitax",
474
+ "compare_with": {}
475
+ },
476
+
477
+ "48": {
478
+ "baseline": "2017_law.json",
479
+ "start_year": 2015,
480
+ "value": {"ACTC_rt": 0.17},
481
+ "name": "Increase additional child tax credit rate by 2 pts",
482
+ "output_type": "iitax",
483
+ "compare_with": {}
484
+ },
485
+
486
+ "49": {
487
+ "baseline": "2017_law.json",
488
+ "start_year": 2015,
489
+ "value": {"ACTC_ChildNum": 2},
490
+ "name": "Lower Additional CTC ChildNum from three to two",
491
+ "output_type": "iitax",
492
+ "compare_with": {}
493
+ },
494
+
495
+ "50": {
496
+ "baseline": "2017_law.json",
497
+ "start_year": 2015,
498
+ "value": {"NIIT_rt": 0},
499
+ "name": "Eliminate Net Investment Income Tax",
500
+ "output_type": "iitax",
501
+ "compare_with": {"Tax Expenditure": [-32.6, -34.7, -36.6, -38.9]}
502
+ },
503
+
504
+ "51": {
505
+ "baseline": "2017_law.json",
506
+ "start_year": 2015,
507
+ "value": {"NIIT_thd": [210000, 260000, 135000, 210000, 260000]},
508
+ "name": "Increase Net Investment Income Tax threshold by $10,000",
509
+ "output_type": "iitax",
510
+ "compare_with": {}
511
+ },
512
+
513
+ "52": {
514
+ "baseline": "2017_law.json",
515
+ "start_year": 2015,
516
+ "value": {"II_credit": [1000, 1000, 1000, 1000, 1000]},
517
+ "name": "New $1000 personal refundable credit, no phaseout",
518
+ "output_type": "iitax",
519
+ "compare_with": {}
520
+ },
521
+
522
+ "53": {
523
+ "baseline": "2017_law.json",
524
+ "start_year": 2015,
525
+ "value": {"II_credit": [1000, 1000, 1000, 1000, 1000],
526
+ "II_credit_ps": [10000, 10000, 10000, 10000, 10000],
527
+ "II_credit_prt": 0.01},
528
+ "name": "New $1000 personal refundable credit, 0.01 po above $10K AGI",
529
+ "output_type": "iitax",
530
+ "compare_with": {}
531
+ },
532
+
533
+ "54": {
534
+ "baseline": "2017_law.json",
535
+ "start_year": 2017,
536
+ "value": {"FST_AGI_trt": 0.3,
537
+ "FST_AGI_thd_lo": [1.0e6, 1.0e6, 0.5e6, 1.0e6, 1.0e6],
538
+ "FST_AGI_thd_hi": [2.0e6, 2.0e6, 1.0e6, 2.0e6, 2.0e6]},
539
+ "name": "Increase FST rate from zero to 0.30 beginning in 2017",
540
+ "output_type": "iitax",
541
+ "compare_with": {"Tax Foundation": [321, "ten-year(2016-25)",
542
+ "static", "estimate"]}
543
+ },
544
+
545
+ "55": {
546
+ "baseline": "2017_law.json",
547
+ "start_year": 2017,
548
+ "value": {"ID_AmountCap_rt": 0.02,
549
+ "ID_AmountCap_Switch":
550
+ [false, true, true, false, false, false, false]},
551
+ "name": "Limit amount of S&L deduction to 2% AGI",
552
+ "output_type": "iitax",
553
+ "compare_with": {"Budget Options": [44.1, 86.6, 87.1, 91.2]}
554
+ },
555
+
556
+ "56": {
557
+ "baseline": "policy_current_law.json",
558
+ "start_year": 2017,
559
+ "value": {"parameter_indexing_CPI_offset": 0},
560
+ "name": "Repeal TCJA chained CPI indexing",
561
+ "output_type": "iitax",
562
+ "compare_with": {}
563
+ },
564
+
565
+ "57": {
566
+ "baseline": "2017_law.json",
567
+ "start_year": 2017,
568
+ "value": {"PT_rt7": 0.35,
569
+ "PT_EligibleRate_active": 0.7},
570
+ "name": "Top pass through rate at 0.35 AND 70% of active business inc eligible for lower rate",
571
+ "output_type": "iitax",
572
+ "compare_with": {}
573
+ },
574
+
575
+ "58": {
576
+ "baseline": "2017_law.json",
577
+ "start_year": 2017,
578
+ "value": {"PT_wages_active_income": true,
579
+ "PT_EligibleRate_active": 0.7,
580
+ "PT_rt7": 0.35},
581
+ "name": "Top pass through rate at 0.35 AND 70% of active business inc eligible for lower rate AND wages included in (positive) active business income eligible for PT rates",
582
+ "output_type": "iitax",
583
+ "compare_with": {}
584
+ },
585
+
586
+ "59": {
587
+ "baseline": "2017_law.json",
588
+ "start_year": 2017,
589
+ "value": {"CTC_new_c": 1000,
590
+ "CTC_new_rt": 0.153,
591
+ "CTC_new_refund_limited": true,
592
+ "CTC_new_refund_limit_payroll_rt": 1},
593
+ "name": "CTC new with 15.3% phase in and refund limit to OASDI",
594
+ "output_type": "iitax",
595
+ "compare_with": {}
596
+ },
597
+
598
+ "60": {
599
+ "baseline": "2017_law.json",
600
+ "start_year": 2017,
601
+ "value": {"CTC_new_c": 1000,
602
+ "CTC_new_rt": 0.153,
603
+ "CTC_new_refund_limited": true,
604
+ "CTC_new_refund_limit_payroll_rt": 1,
605
+ "CTC_new_refund_limited_all_payroll": true},
606
+ "name": "CTC new with 15.3% phase in and refund limit to all payroll taxes",
607
+ "output_type": "iitax",
608
+ "compare_with": {}
609
+ },
610
+
611
+ "61": {
612
+ "baseline": "2017_law.json",
613
+ "start_year": 2017,
614
+ "value": {"ID_Charity_hc": 1,
615
+ "CR_Charity_rt": 0.3,
616
+ "CR_Charity_frt": 0.005},
617
+ "name": "Replace charitable deduction with 30% credit, subject to 0.5% AGI floor",
618
+ "output_type": "iitax",
619
+ "compare_with": {}
620
+ },
621
+
622
+ "62": {
623
+ "baseline": "2017_law.json",
624
+ "start_year": 2019,
625
+ "value": {"EITC_basic_frac": 0.5},
626
+ "name": "Add EITC basic credit equal to half the maximum credit with half the phasein rate (as described in Tax-Calculator issue 2092)",
627
+ "output_type": "iitax",
628
+ "compare_with": {}
629
+ },
630
+
631
+ "63": {
632
+ "baseline": "policy_current_law.json",
633
+ "start_year": 2019,
634
+ "value": {"EITC_indiv": true},
635
+ "name": "Individualize the EITC",
636
+ "output_type": "iitax",
637
+ "compare_with": {}
638
+ },
639
+
640
+ "64": {
641
+ "baseline": "policy_current_law.json",
642
+ "start_year": 2019,
643
+ "value": {"RPTC_rt": 0.062,
644
+ "RPTC_c": 310},
645
+ "name": "Add refundable payroll tax credit (equivalent to $5000 exemption in Tax-Calculator issue 2362)",
646
+ "output_type": "iitax",
647
+ "compare_with": {}
648
+ }
649
+ }