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,15 @@
1
+ // Title: Social Security Expansion Act: Sen. Bernie Sanders and Rep. Peter DeFazio
2
+ // Reform_File_Author: Duncan Hobbs
3
+ // Reform_Reference: https://defazio.house.gov/media-center/press-releases/defazio-sanders-introduce-legislation-to-strengthen-and-expand-social
4
+ // SSA Analysis: https://www.ssa.gov/OACT/solvency/SandersDeFazio_20190213.pdf
5
+ // Reform_Baseline: policy_current_law.json
6
+ // Reform_Description:
7
+ // - Apply the combined OASDI payroll tax rate on earnings above $250,000 (1)
8
+ // - Apply a separate 6.2% tax on investment income above ACA threshold (2)
9
+ // Reform_Parameter_Map:
10
+ // 1: SS_Earnings_thd
11
+ // 2: NIIT_rt
12
+ {
13
+ "SS_Earnings_thd": {"2020": 250000},
14
+ "NIIT_rt": {"2020": 0.100}
15
+ }
@@ -0,0 +1,10 @@
1
+ RECID,c00100,standard,c04800,iitax,payrolltax
2
+ 11,30000,12400,17600,114.5,4590
3
+ 12,60000,12400,47600,4462,9180
4
+ 13,460000,12400,447600,131455,58794.8
5
+ 21,60000,24800,35200,-3771,9180
6
+ 22,120000,24800,95200,4924,18360
7
+ 23,240000,24800,215200,35807,36720
8
+ 31,30000,18650,11350,-4543.93,4590
9
+ 32,60000,18650,41350,880,9180
10
+ 33,120000,18650,101350,13537,18360
@@ -0,0 +1,160 @@
1
+ // Title: Tax Cuts and Jobs Act, final version
2
+ // Reform_File_Author: Cody Kallen (with updates by Martin Holme and Bodi Yang)
3
+ // Reform_Reference: 2018 IRS forms and this URL:
4
+ // http://docs.house.gov/billsthisweek/20171218/CRPT-115HRPT-466.pdf
5
+ // Reform_Baseline: 2017_law.json
6
+ // Reform_Description:
7
+ // - New personal income tax schedule (regular/non-AMT/non-pass-through) (1)
8
+ // - New pass-through income tax schedule (2)
9
+ // - New standard deductions (3)
10
+ // - Repeal personal exemption (4)
11
+ // - Modification to child tax credit, nonrefundable dependent credits (5)
12
+ // - Modification of Alternative Minimum Tax exemption parameters (6)
13
+ // - Changes to certain above the line deductions (7)
14
+ // - Changes to itemized deductions (8)
15
+ // - Switch to chained CPI from CPI-U for tax parameter adjustment (9)
16
+ // Reform_Parameter_Map:
17
+ // - 1: II_*
18
+ // - 2: PT_*
19
+ // - 3: STD (can safely ignore WARNINGs about 2026+ values)
20
+ // - 4: II_em
21
+ // - 5: ODC_c, _CTC_c, _CTC_ps, _ACTC_c, _ACTC_Income_thd
22
+ // - 6: AMT_em*
23
+ // - 7: ALD_*
24
+ // - 8: ID_* (can safely ignore WARNINGs about values for several parameters)
25
+ // - 9: parameter_indexing_CPI_offset
26
+ // Note: II_brk*, PT_brk*, STD, II_em are rounded to nearest integer value
27
+ {
28
+ "II_rt1": {"2018": 0.10,
29
+ "2026": 0.10},
30
+ "II_rt2": {"2018": 0.12,
31
+ "2026": 0.15},
32
+ "II_rt3": {"2018": 0.22,
33
+ "2026": 0.25},
34
+ "II_rt4": {"2018": 0.24,
35
+ "2026": 0.28},
36
+ "II_rt5": {"2018": 0.32,
37
+ "2026": 0.33},
38
+ "II_rt6": {"2018": 0.35,
39
+ "2026": 0.35},
40
+ "II_rt7": {"2018": 0.37,
41
+ "2026": 0.396},
42
+ "II_brk1": {"2018": [9525, 19050, 9525, 13600, 19050],
43
+ "2026": [11242, 22484, 11242, 16094, 22484]},
44
+ "II_brk2": {"2018": [38700, 77400, 38700, 51800, 77400],
45
+ "2026": [45751, 91502, 45751, 61242, 91502]},
46
+ "II_brk3": {"2018": [82500, 165000, 82500, 82500, 165000],
47
+ "2026": [110791, 184571, 92286, 158169, 184571]},
48
+ "II_brk4": {"2018": [157500, 315000, 157500, 157500, 315000],
49
+ "2026": [231045, 281317, 140659, 256181, 281317]},
50
+ "II_brk5": {"2018": [200000, 400000, 200000, 200000, 400000],
51
+ "2026": [502356, 502356, 251178, 502356, 502356]},
52
+ "II_brk6": {"2018": [500000, 600000, 300000, 500000, 600000],
53
+ "2026": [504406 ,567457, 283728, 535931, 567457]},
54
+ "PT_rt1": {"2018": 0.10,
55
+ "2026": 0.10},
56
+ "PT_rt2": {"2018": 0.12,
57
+ "2026": 0.15},
58
+ "PT_rt3": {"2018": 0.22,
59
+ "2026": 0.25},
60
+ "PT_rt4": {"2018": 0.24,
61
+ "2026": 0.28},
62
+ "PT_rt5": {"2018": 0.32,
63
+ "2026": 0.33},
64
+ "PT_rt6": {"2018": 0.35,
65
+ "2026": 0.35},
66
+ "PT_rt7": {"2018": 0.37,
67
+ "2026": 0.396},
68
+ "PT_brk1": {"2018": [9525, 19050, 9525, 13600, 19050],
69
+ "2026": [11242, 22484, 11242, 16094, 22484]},
70
+ "PT_brk2": {"2018": [38700, 77400, 38700, 51800, 77400],
71
+ "2026": [45751, 91502, 45751, 61242, 91502]},
72
+ "PT_brk3": {"2018": [82500, 165000, 82500, 82500, 165000],
73
+ "2026": [110791, 184571, 92286, 158169, 184571]},
74
+ "PT_brk4": {"2018": [157500, 315000, 157500, 157500, 315000],
75
+ "2026": [231045, 281317, 140659, 256181, 281317]},
76
+ "PT_brk5": {"2018": [200000, 400000, 200000, 200000, 400000],
77
+ "2026": [502356, 502356, 251178, 502356, 502356]},
78
+ "PT_brk6": {"2018": [500000, 600000, 300000, 500000, 600000],
79
+ "2026": [504406 ,567457, 283728, 535931, 567457]},
80
+ "PT_qbid_rt": {"2018": 0.2,
81
+ "2026": 0.0},
82
+ "PT_qbid_taxinc_thd": {"2018": [157500, 315000, 157500, 157500, 315000],
83
+ "2026": [0, 0, 0, 0, 0]},
84
+ "PT_qbid_taxinc_gap": {"2018": [50000, 100000, 50000, 50000, 100000],
85
+ "2026": [1, 1, 1, 1, 1]},
86
+ "PT_qbid_w2_wages_rt": {"2018": 0.5,
87
+ "2026": 0.0},
88
+ "PT_qbid_alt_w2_wages_rt": {"2018": 0.25,
89
+ "2026": 0.0},
90
+ "PT_qbid_alt_property_rt": {"2018": 0.025,
91
+ "2026": 0.0},
92
+ "STD": {"2018": [12000, 24000, 12000, 18000, 24000],
93
+ "2026": [7655, 15311, 7655, 11272, 15311]},
94
+ "II_em": {"2018": 0,
95
+ "2026": 4883},
96
+ "ODC_c": {"2018": 500,
97
+ "2026": 0},
98
+ "CTC_c": {"2018": 2000,
99
+ "2026": 1000},
100
+ "CTC_ps": {"2018": [200000, 400000, 200000, 200000, 400000],
101
+ "2026": [75000, 110000, 55000, 75000, 75000]},
102
+ "ACTC_c": {"2018": 1400,
103
+ "2022": 1500,
104
+ "2025": 1600,
105
+ "2026": 1000},
106
+ "ACTC_Income_thd": {"2018": 2500,
107
+ "2026": 3000},
108
+ "AMT_em": {"2018": [70300, 109400, 54700, 70300, 109400],
109
+ "2026": [65462, 101870, 50935, 65461, 101870]},
110
+ "AMT_em_ps": {"2018": [500000, 1000000, 500000, 500000, 1000000],
111
+ "2026": [145511, 193974, 96987, 145511, 193974]},
112
+ "AMT_em_pe": {"2018": 718800,
113
+ "2026": 302083},
114
+ "ALD_DomesticProduction_hc": {"2018": 1,
115
+ "2026": 0},
116
+ "ALD_AlimonyPaid_hc": {"2019": 1,
117
+ "2026": 0},
118
+ "ALD_AlimonyReceived_hc": {"2019": 0,
119
+ "2026": 1},
120
+ "ALD_BusinessLosses_c": {"2018": [250000, 500000, 250000, 250000, 500000],
121
+ "2026": [9e99, 9e99, 9e99, 9e99, 9e99]},
122
+ "ID_ps": {"2018": [9e99, 9e99, 9e99, 9e99, 9e99],
123
+ "2026": [316675, 380010, 190005, 348343, 380010]},
124
+ "ID_prt": {"2018": 0.00,
125
+ "2026": 0.03},
126
+ "ID_crt": {"2018": 1.0,
127
+ "2026": 0.8},
128
+ "ID_Charity_crt_cash": {"2018": 0.6,
129
+ "2026": 0.5},
130
+ "ID_Casualty_hc": {"2018": 1,
131
+ "2026": 0},
132
+ "ID_AllTaxes_c": {"2018": [10000, 10000, 5000, 10000, 10000],
133
+ "2026": [9e99, 9e99, 9e99, 9e99, 9e99]},
134
+ "ID_Miscellaneous_hc": {"2018": 1,
135
+ "2026": 0},
136
+ "ID_Medical_frt": {"2017": 0.075,
137
+ "2019": 0.075},
138
+ "parameter_indexing_CPI_offset": {"2017": 0.0},
139
+
140
+ // Apply parameters that are affected by the change in index rates
141
+ // even though they are not directly modified by TCJA.
142
+ "II_em_ps": {"2018": [9e99, 9e99, 9e99, 9e99, 9e99]},
143
+ "STD_Dep": {"2018": 1050, "2019": 1100, "2020": 1100, "2021": 1100, "2022": 1150},
144
+ "STD_Aged": {"2018": [1600, 1300, 1300, 1600, 1300]},
145
+ "CG_brk1": {"2018": [38600, 77200, 38600, 51700, 77200]},
146
+ "CG_brk2": {"2018": [425800, 479000, 239500, 452400, 479000]},
147
+ "AMT_CG_brk1": {"2018": [38600, 77200, 38600, 51700, 77200]},
148
+ "AMT_CG_brk2": {"2018": [425800, 479000, 239500, 452400, 479000]},
149
+ "AMT_child_em": {"2018": 7600},
150
+ "AMT_brk1": {"2018": 191100},
151
+ "EITC_c": {"2018": [519, 3461, 5716, 6431]},
152
+ "EITC_MaxEligAge": {"2022":125, "2023": 125},
153
+ "EITC_ps": {"2018": [8490, 18660, 18660, 18660]},
154
+ "EITC_ps_MarriedJ": {"2018": [5680, 5690, 5690, 5690]},
155
+ "EITC_InvestIncome_c": {"2018": 3500},
156
+ "ETC_pe_Single": {"2018": 67},
157
+ "ETC_pe_Married": {"2018": 134},
158
+ "FST_AGI_thd_lo": {"2018": [1000000, 1000000, 500000, 1000000, 1000000]},
159
+ "FST_AGI_thd_hi": {"2018": [2000000, 2000000, 1000000, 2000000, 2000000]}
160
+ }
@@ -0,0 +1,48 @@
1
+ TCJA FAQ
2
+ ========
3
+
4
+ In Tax-Calculator release 0.15.0 and higher, the `policy_current_law`
5
+ file represents TCJA, not the pre-TCJA policy that was represented by
6
+ `policy_current_law.json` in releases before 0.15.0.
7
+
8
+ **1. How can I use pre-TCJA policy as the baseline?**
9
+
10
+ You need to use the new
11
+ [2017_law.json](https://github.com/open-source-economics/Tax-Calculator/blob/master/taxcalc/reforms/2017_law.json)
12
+ as a "reform", and then, if you want to compare that pre-TCJA policy
13
+ to an old reform, implement the old reform as usual. This
14
+ compound-reform technique works well and is being used extensively in
15
+ the Tax-Calculator test suite. This technique is illustrated in
16
+ recipe 01 of the [Cookbook of Tested Recipes for Python Programming
17
+ with
18
+ Tax-Calculator](https://pslmodels.github.io/Tax-Calculator/cookbook.html)
19
+ using the `2017_law.json` and `TCJA.json` reform files. For a check
20
+ of the consistency of the `2017_law.json` and `TCJA.json` reform
21
+ files, see `test_round_trip_tcja_reform` in the
22
+ `taxcalc/tests/test_reforms.py` file.
23
+
24
+ **2. Does Tax-Calculator produce the same results for pre-TCJA policy
25
+ as before?**
26
+
27
+ Yes, release 0.14.3 and 0.15.0 produce the same aggregate results for
28
+ pre-TCJA policy even though the contents of `policy_current_law.json`
29
+ have changed.
30
+
31
+ For an analysis that shows the pre-TCJA tax revenues for 2019 are the
32
+ same, see below at the heading **TCJA and pre-TCJA Comparisons**.
33
+
34
+ **3. Does Tax-Calculator produce the same results for TCJA policy as
35
+ before?**
36
+
37
+ No, there is a small difference (less than one percent) in aggregate
38
+ income tax revenues between the Tax-Calculator releases 0.15.0 and
39
+ 0.14.3. This difference is caused by the fact that Tax-Calculator
40
+ 0.15.0 adds several TCJA provisions that were not included in
41
+ Tax-Calculator 0.14.3. See pull requests #1818 and #1819 for details
42
+ on the newly added TCJA provisions.
43
+
44
+ **4. Does TCJA current-law policy incorporate any behavior responses?**
45
+
46
+ Beginning with release 0.25.0, Tax-Calculator incorporates a new CBO
47
+ budget outlook that presumably includes the effects of any behavioral
48
+ changes and growth effects that one might expect to be caused by TCJA.
@@ -0,0 +1,10 @@
1
+ RECID,c00100,standard,c04800,iitax,payrolltax
2
+ 11,30000.00,12404.02,17595.98,114.60,4590.00
3
+ 12,60000.00,12404.02,47595.98,4473.91,9180.00
4
+ 13,460000.00,12404.02,447595.98,131529.61,32754.80
5
+ 21,60000.00,24808.03,35191.97,-3770.79,9180.00
6
+ 22,120000.00,24808.03,95191.97,4947.82,18360.00
7
+ 23,240000.00,24808.03,215191.97,35840.55,36720.00
8
+ 31,30000.00,18606.02,11393.98,-4526.38,4590.00
9
+ 32,60000.00,18606.02,41393.98,886.12,9180.00
10
+ 33,120000.00,18606.02,101393.98,13568.45,18360.00
@@ -0,0 +1,71 @@
1
+ // Title: 2016 Trump Campaign Tax Plan
2
+ // Reform_File_Author: Matt Jensen
3
+ // Reform_Reference: https://www.donaldjtrump.com/policies/tax-plan
4
+ // Reform_Baseline: 2017_law.json
5
+ // Reform_Description:
6
+ // - New personal income tax schedule (regular/non-AMT/non-pass-through) (1)
7
+ // - New pass-through income tax schedule (2)
8
+ // - New long-term capital gains and qualified dividends tax schedule (3)
9
+ // - Repeal Alternative Minimum Tax (4)
10
+ // - Repeal Net Investment Income Tax (5)
11
+ // - Raise the Standard Deduction (6)
12
+ // - Repeal the Personal Exemption (7)
13
+ // - New above the line deduction for child and elder care (8)
14
+ // - Cap itemized deductions (9)
15
+ // Reform_Parameter_Map:
16
+ // - 1: II_rt*, II_brk*
17
+ // - 2: PT_*
18
+ // - 3: CG_*
19
+ // - 4: AMT_*
20
+ // - 5: NIIT_rt
21
+ // - 6: STD
22
+ // - 7: II_em
23
+ // - 8: ALD_Dependents*
24
+ // - 9: ID_c
25
+ {
26
+ "II_rt1": {"2017": 0.12},
27
+ "II_brk1": {"2017": [37500, 75000, 37500, 37500, 75000]},
28
+ "II_rt2": {"2017": 0.25},
29
+ "II_brk2": {"2017": [112500, 225000, 112500, 112500, 225000]},
30
+ "II_rt3": {"2017": 0.25},
31
+ "II_brk3": {"2017": [112500, 225000, 112500, 112500, 225000]},
32
+ "II_rt4": {"2017": 0.25},
33
+ "II_brk4": {"2017": [112500, 225000, 112500, 112500, 225000]},
34
+ "II_rt5": {"2017": 0.25},
35
+ "II_brk5": {"2017": [112500, 225000, 112500, 112500, 225000]},
36
+ "II_rt6": {"2017": 0.25},
37
+ "II_brk6": {"2017": [112500, 225000, 112500, 112500, 225000]},
38
+ "II_rt7": {"2017": 0.33},
39
+ "PT_rt1": {"2017": 0.12},
40
+ "PT_brk1": {"2017": [37500, 75000, 37500, 37500, 75000]},
41
+ "PT_rt2": {"2017": 0.15},
42
+ "PT_brk2": {"2017": [112500, 225000, 112500, 112500, 225000]},
43
+ "PT_rt3": {"2017": 0.15},
44
+ "PT_brk3": {"2017": [112500, 225000, 112500, 112500, 225000]},
45
+ "PT_rt4": {"2017": 0.15},
46
+ "PT_brk4": {"2017": [112500, 225000, 112500, 112500, 225000]},
47
+ "PT_rt5": {"2017": 0.15},
48
+ "PT_brk5": {"2017": [112500, 225000, 112500, 112500, 225000]},
49
+ "PT_rt6": {"2017": 0.15},
50
+ "PT_brk6": {"2017": [112500, 225000, 112500, 112500, 225000]},
51
+ "PT_rt7": {"2017": 0.15},
52
+ "CG_brk1": {"2017": [37500, 75000, 37500, 37500, 75000]},
53
+ "CG_brk2": {"2017": [112500, 225000, 112500, 112500, 225000]},
54
+ "AMT_rt1": {"2017": 0},
55
+ "AMT_rt2": {"2017": 0},
56
+ "NIIT_rt": {"2017": 0},
57
+ "STD": {"2017": [15000, 30000, 15000, 15000, 30000]},
58
+ "II_em": {"2017": 0},
59
+ "ALD_Dependents_thd": {"2017": [250000, 500000, 250000, 500000, 500000]},
60
+ "ALD_Dependents_Elder_c": {"2017": 5000},
61
+ "ALD_Dependents_Child_c": {"2017": 7156},
62
+ "ID_c": {"2017": [100000, 200000, 100000, 100000, 200000]}
63
+ }
64
+ // Note: Due to lack of detail, data, or modeling capability,
65
+ // many provisions cannot be scored.
66
+ // These omitted provisions include:
67
+ // - Allow expenssing for pass-through firms
68
+ // - Tax carried interest as ordinary business income
69
+ // - Repeal pass-through business tax expenditures
70
+ // - Corporate tax provisions
71
+ // - Estate tax provisions
@@ -0,0 +1,10 @@
1
+ RECID,c00100,standard,c04800,iitax,payrolltax
2
+ 11,30000.00,15882.08,14117.92,-105.85,4590.00
3
+ 12,60000.00,15882.08,44117.92,4067.80,9180.00
4
+ 13,460000.00,15882.08,444117.92,131867.98,32754.80
5
+ 21,60000.00,31764.18,28235.82,-2211.70,9180.00
6
+ 22,120000.00,31764.18,88235.82,6635.60,18360.00
7
+ 23,240000.00,31764.18,208235.82,41735.60,36720.00
8
+ 31,30000.00,15882.08,14117.92,-3014.86,4590.00
9
+ 32,60000.00,15882.08,44117.92,3067.80,9180.00
10
+ 33,120000.00,15882.08,104117.92,19442.80,18360.00
@@ -0,0 +1,51 @@
1
+ // Title: 2017 Trump Administration Tax Reform Proposal (potential)
2
+ // Reform_File_Author: Cody Kallen
3
+ // Reform_Reference: 1-page hand-out from the White House briefing
4
+ // Reform_Baseline: 2017_law.json
5
+ // Reform_Description:
6
+ // - New personal income tax schedule (regular/non-AMT/non-pass-through) (1)
7
+ // - New pass-through income tax schedule (2)
8
+ // - Repeal Alternative Minimum Tax (3)
9
+ // - Repeal Net Investment Income Tax (4)
10
+ // - Double the Standard Deduction (5)
11
+ // - Eliminate all itemized deductions except mortgage interest and charitable contributions (6)
12
+ // Reform_Parameter_Map:
13
+ // - 1: II_rt*
14
+ // - 2: PT_*
15
+ // - 3: AMT_*
16
+ // - 4: NIIT_rt
17
+ // - 5: STD
18
+ // - 6: ID_*
19
+ {
20
+ "II_rt1": {"2017": 0.10},
21
+ "II_rt2": {"2017": 0.10},
22
+ "II_rt3": {"2017": 0.25},
23
+ "II_rt4": {"2017": 0.25},
24
+ "II_rt5": {"2017": 0.25},
25
+ "II_rt6": {"2017": 0.35},
26
+ "II_rt7": {"2017": 0.35},
27
+ "PT_rt1": {"2017": 0.1},
28
+ "PT_rt2": {"2017": 0.1},
29
+ "PT_rt3": {"2017": 0.15},
30
+ "PT_rt4": {"2017": 0.15},
31
+ "PT_rt5": {"2017": 0.15},
32
+ "PT_rt6": {"2017": 0.15},
33
+ "PT_rt7": {"2017": 0.15},
34
+ "AMT_rt1": {"2017": 0},
35
+ "AMT_rt2": {"2017": 0},
36
+ "NIIT_rt": {"2017": 0},
37
+ "STD": {"2017": [12700, 25400, 12700, 18700, 25400]},
38
+ "ID_StateLocalTax_hc": {"2017": 1.0},
39
+ "ID_Medical_hc": {"2017": 1.0},
40
+ "ID_Casualty_hc": {"2017": 1.0},
41
+ "ID_Miscellaneous_hc": {"2017": 1.0},
42
+ "ID_RealEstate_hc": {"2017": 1.0}
43
+ }
44
+ // Note: This reform file does not include several important provisions
45
+ // in the proposal:
46
+ // - Providing tax relief for families with child and dependent care expenses
47
+ // - 15% corporate income tax rate
48
+ // - Switch to a territorial tax system
49
+ // - One-time tax on repatriated profits held overseas
50
+ // - Eliminate tax breaks for special interests
51
+ // - Repeal of the estate tax
@@ -0,0 +1,10 @@
1
+ RECID,c00100,standard,c04800,iitax,payrolltax
2
+ 11,30000.00,13446.83,12265.02,-573.50,4590.00
3
+ 12,60000.00,13446.83,42265.02,2739.00,9180.00
4
+ 13,460000.00,13446.83,446553.17,106145.92,32754.80
5
+ 21,60000.00,26893.67,15953.73,-4004.63,9180.00
6
+ 22,120000.00,26893.67,75953.73,2495.37,18360.00
7
+ 23,240000.00,26893.67,195953.73,36933.93,36720.00
8
+ 31,30000.00,19799.67,1624.03,-4546.61,4590.00
9
+ 32,60000.00,19799.67,31624.03,362.40,9180.00
10
+ 33,120000.00,19799.67,91624.03,13412.91,18360.00
@@ -0,0 +1,56 @@
1
+ // Title: Select Provisions from the Clinton Tax Plan
2
+ // Reform_File_Author: Cody Kallen
3
+ // Reform Reference: https://www.hillaryclinton.com/briefing/factsheets/2016/01/12/investing-in-america-by-restoring-basic-fairness-to-our-tax-code/
4
+ // Reform_Baseline: 2017_law.json
5
+ // Reform Description:
6
+ // - 4% surcharge on AGI above $5 million ($2.5 million for married filing separately) (1)
7
+ // - Establishment of the "Fair Share Tax" at a 30% rate (aka the Buffett rule) (2)
8
+ // - Limit the tax value of itemized deductions to 28% (3)
9
+ // - Expansion of the Child Tax Credit and Additional CHild Tax Credit for children under 5 (4)
10
+ // - Including more business income in the base for the Net Investment Income Tax (5)
11
+ // Reform_Parameter_Map:
12
+ // - 1: AGI_surtax*
13
+ // - 2: FST_AGI_trt
14
+ // - 3: ID_BenefitCap*
15
+ // - 4: CTC_c_under5_bonus, ACTC_rt_bonus_under5family
16
+ // - 5: NIIT_PT_taxed
17
+ {
18
+ "AGI_surtax_trt": {"2017": 0.04},
19
+ "AGI_surtax_thd": {"2017": [5.0e6, 5.0e6, 2.5e6, 5.0e6, 5.0e6]},
20
+ "FST_AGI_trt": {"2017": 0.3},
21
+ "ID_BenefitCap_Switch": {
22
+ "2017": [true, true, true, true, true, true, false]
23
+ },
24
+ "ID_BenefitCap_rt": {"2017": 0.28},
25
+ "CTC_c_under5_bonus": {"2017": 1000},
26
+ "ACTC_rt_bonus_under5family": {"2017": 0.3},
27
+ "NIIT_PT_taxed": {"2017": true}
28
+ }
29
+ // Note: Due to lack of detail, data, or modeling capability, many provisions cannot be scored.
30
+ // These omitted provisions include:
31
+ // - New structure on capital gains taxes:
32
+ // - 39.6% if held less than 2 years
33
+ // - 36% if held 2-3 years
34
+ // - 32% if held 3-4 years
35
+ // - 28% if held 4-5 years
36
+ // - 24% if held 5-6 years
37
+ // - 20% if held 6 years or longer
38
+ // - Limit contributions to tax-deferred and tax-free retirement accounts
39
+ // - Limit tax benefits of like-kind exchanges
40
+ // - Reduce estate tax exemption to $3.5 million ($7 million for couples)
41
+ // - Progressive estate tax rates, with top rate of 65 percent
42
+ // - Tax unrealized gains at death for high-income taxpayers
43
+ // - Tax carried interest at ordinary tax rates
44
+ // - A 20% credit for caregiver expenses
45
+ // - Up to $5000 in tax relief for excessive health care costs
46
+ // - Financial risk fee on large banks
47
+ // - Tax on high-frequency trading
48
+ // - Expand small business expensing (Section 179)
49
+ // - Expand cash expensing for small businesses
50
+ // - Expand start-up deduction, create a small business deduction
51
+ // - Expand ACA credit for small businesses
52
+ // - Create business tax credits for profit-sharing and apprenticeships
53
+ // - Repeal the Cadillac Tax on high-cost health plans
54
+ // - New rules to prevent corporate inversions
55
+ // - Limit net interest deduction to share in consolidated financial statements
56
+ // - "Exit tax" on US multinationals that become foreign residents
@@ -0,0 +1,104 @@
1
+ // Title: 2016 Better Way Tax Reform Blueprint (Ryan-Brady)
2
+ // Reform_File_Author: Cody Kallen
3
+ // Reform_Reference: http://abetterway.speaker.gov/_assets/pdf/ABetterWay-Tax-PolicyPaper.pdf
4
+ // Reform_Baseline: 2017_law.json
5
+ // Reform_Description:
6
+ // - New personal income tax schedule (regular/non-AMT/non-pass-through) (1)
7
+ // - New pass-through income tax schedule (2)
8
+ // - Tax long-term capital gains and qualified dividends as ordinary income,
9
+ // - exclude half of interest, qualified dividends, and long-term gain (before loss limitation)(3)
10
+ // - Repeal Alternative Minimum Tax (4)
11
+ // - Repeal Net Investment Income Tax (5)
12
+ // - Raise the Standard Deduction and repeal the Additional Standard Deduction (6)
13
+ // - Repeal the Personal Exemption (7)
14
+ // - New $500 nonrefundable credit, based on Child Tax Credit (8)
15
+ // - Eliminate marriage penalty in Child Tax Credit phase-out (9)
16
+ // - Repeal itemized deductions except mortgage interest and charitable contribution (10)
17
+ // Reform_Parameter_Map:
18
+ // - 1: _II_rt*
19
+ // - 2: _PT_rt*
20
+ // - 3: _CG_nodiff, _ALD_InvInc_ec*
21
+ // - 4: _AMT_*
22
+ // - 5: _NIIT_rt
23
+ // - 6: _STD
24
+ // - 7: _II_em
25
+ // - 8: _DependentCredit_Child_c, _DependentCredit_Nonchild_c
26
+ // - 9: _CTC_ps
27
+ // - 10: _ID*
28
+ {
29
+ "policy": {
30
+ "_II_rt1":
31
+ {"2017": [0.12]},
32
+ "_II_rt2":
33
+ {"2017": [0.12]},
34
+ "_II_rt3":
35
+ {"2017": [0.25]},
36
+ "_II_rt4":
37
+ {"2017": [0.25]},
38
+ "_II_rt5":
39
+ {"2017": [0.33]},
40
+ "_II_rt6":
41
+ {"2017": [0.33]},
42
+ "_II_rt7":
43
+ {"2017": [0.33]},
44
+ "_PT_rt1":
45
+ {"2017": [0.12]},
46
+ "_PT_rt2":
47
+ {"2017": [0.12]},
48
+ "_PT_rt3":
49
+ {"2017": [0.25]},
50
+ "_PT_rt4":
51
+ {"2017": [0.25]},
52
+ "_PT_rt5":
53
+ {"2017": [0.25]},
54
+ "_PT_rt6":
55
+ {"2017": [0.25]},
56
+ "_PT_rt7":
57
+ {"2017": [0.25]},
58
+ "_CG_nodiff":
59
+ {"2017": [true]},
60
+ "_ALD_InvInc_ec_rt":
61
+ {"2017": [0.5]},
62
+ "_ALD_InvInc_ec_base_RyanBrady":
63
+ {"2017": [true]},
64
+ "_AMT_rt1":
65
+ {"2017": [0]},
66
+ "_AMT_rt2":
67
+ {"2017": [0]},
68
+ "_NIIT_rt":
69
+ {"2017": [0]},
70
+ "_STD":
71
+ {"2017": [[12000, 24000, 12000, 18000, 24000]]},
72
+ "_STD_Aged":
73
+ {"2017": [[0, 0, 0, 0, 0]]},
74
+ "_II_em":
75
+ {"2017": [0]},
76
+ "_DependentCredit_Child_c":
77
+ {"2017": [500]},
78
+ "_DependentCredit_Nonchild_c":
79
+ {"2017": [500]},
80
+ "_CTC_ps":
81
+ {"2017": [[75000, 150000, 75000, 75000, 75000]]},
82
+ "_ID_StateLocalTax_hc":
83
+ {"2017": [1.0]},
84
+ "_ID_Medical_hc":
85
+ {"2017": [1.0]},
86
+ "_ID_Casualty_hc":
87
+ {"2017": [1.0]},
88
+ "_ID_Miscellaneous_hc":
89
+ {"2017": [1.0]},
90
+ "_ID_RealEstate_hc":
91
+ {"2017": [1.0]}
92
+ }
93
+ }
94
+
95
+ // Note: This reform file does not include several important reforms in the plan.
96
+ // The omitted reforms include:
97
+ // - Repeal the estate tax and generation-skipping transfer tax
98
+ // - Reduce the corporate tax rate to 20%
99
+ // - Repeal the Corporate AMT
100
+ // - Immediate expensing of corporate investment except for land and inventories
101
+ // - Eliminate net interest deduction
102
+ // - Limitation on current NOL use, expansion of NOL carry-forward
103
+ // - Eliminate Section 199 - Domestic production deduction
104
+ // - Border adjustment of business taxes