Skip to content

Commit a4c4135

Browse files
authored
Merge pull request #80 from rickecon/mn
Merging
2 parents f76173d + f67fc5d commit a4c4135

File tree

97 files changed

+390
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+390
-227
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [0.3.6] - 2024-11-22 01:15:00
10+
11+
### Added
12+
13+
- Updates Minnesota tax logic to 2023 law
14+
915
## [0.3.5] - 2024-11-21 00:30:00
1016

1117
### Added
@@ -251,7 +257,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
251257
- First prototype version based off of openfisca-us and tax-calculator.
252258

253259

254-
[0.3.5]: https://github.com/TheCGO/fiscalsim-us/compare/v0.3.5...v0.3.5
260+
[0.3.6]: https://github.com/TheCGO/fiscalsim-us/compare/v0.3.5...v0.3.6
261+
[0.3.5]: https://github.com/TheCGO/fiscalsim-us/compare/v0.3.4...v0.3.5
255262
[0.3.4]: https://github.com/TheCGO/fiscalsim-us/compare/v0.3.3...v0.3.4
256263
[0.3.3]: https://github.com/TheCGO/fiscalsim-us/compare/v0.3.2...v0.3.3
257264
[0.3.2]: https://github.com/TheCGO/fiscalsim-us/compare/v0.3.1...v0.3.2

changelog.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -224,3 +224,8 @@
224224
added:
225225
- Updated and fixed Arkansas parameters, variables and tests.
226226
date: 2024-11-21 00:30:00
227+
- bump: patch
228+
changes:
229+
added:
230+
- Updates Minnesota tax logic to 2023 law
231+
date: 2024-11-22 01:15:00
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# Minnesota
2+
* We exclude part-year residents (line 13, form M1) and assume all residents are full-year
3+
* We exclude lin 14 other taxes (M1HOME, Schedule M1529, and Schedule M1LS)
4+
* We exclude contribution to Nongame Wildlife Fund (line 18, form M1)
5+
* We exclude any code logic for Minnesota income tax withheld (line 20, form M1) and Minnesota estimated tax and extension payments (line 21, form M1)

fiscalsim_us/parameters/gov/states/mn/tax/income/additions/sources.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ metadata:
1212
href: https://www.taxformfinder.org/forms/2021/2021-minnesota-form-m1m.pdf
1313
- title: 2022 MN Schedule M1M, Income Additions and Subtractions
1414
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1m_22.pdf
15+
- title: 2023 MN Schedule M1M, Income Additions and Subtractions
16+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1m-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/amt/mult.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1mt_21.pdf#page=1
1212
- title: 2022 Minnesota Schedule M1MT form, Line 24
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1mt_22.pdf#page=1
14+
- title: 2023 Minnesota Schedule M1MT form, Line 24
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1mt-23.pdf#page=1

fiscalsim_us/parameters/gov/states/mn/tax/income/amt/rate.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1mt_21.pdf#page=1
1212
- title: 2022 Minnesota Schedule M1MT form, Line 27
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1mt_22.pdf#page=1
14+
- title: 2023 Minnesota Schedule M1MT form, Line 27
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1mt-23.pdf#page=1

fiscalsim_us/parameters/gov/states/mn/tax/income/amt/standard_deduct.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,25 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1mt_21.pdf#page=1
1212
- title: 2022 Minnesota Schedule M1MT form, Line 21
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1mt_22.pdf#page=1
14+
- title: 2023 Minnesota Schedule M1MT form, Line 21
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1mt-23.pdf#page=1
1416
JOINT:
1517
2021-01-01: 79_660
1618
2022-01-01: 82_150
19+
2023-01-01: 87_960
1720
HEAD_OF_HOUSEHOLD:
1821
2021-01-01: 59_750
1922
2022-01-01: 61_610
23+
2023-01-01: 65_970
2024
SURVIVING_SPOUSE:
2125
2021-01-01: 79_660
2226
2022-01-01: 82_150
27+
2023-01-01: 87_960
2328
SINGLE:
2429
2021-01-01: 59_750
2530
2022-01-01: 61_610
31+
2023-01-01: 65_970
2632
SEPARATE:
2733
2021-01-01: 39_840
2834
2022-01-01: 41_080
35+
2023-01-01: 43_990

fiscalsim_us/parameters/gov/states/mn/tax/income/amt/std_deduct_phase_out.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1mt_21.pdf#page=1
1212
- title: 2022 Minnesota Schedule M1MT form, Line 22
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1mt_22.pdf#page=1
14+
- title: 2023 Minnesota Schedule M1MT form, Line 22
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1mt-23.pdf#page=1
1416

1517
SINGLE:
1618
2021-01-01: 112_500

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/cdcc/child_age.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1cd_21.pdf#page=3
1212
- title: 2022 Schedule M1CD, Child and Dependent Care Credit
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1cd_22_0.pdf#page=3
14+
- title: 2023 Schedule M1CD, Child and Dependent Care Credit
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1cd-23.pdf#page=3

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/cdcc/expense_fraction.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ metadata:
1010
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1cd_21.pdf#page=6
1111
- title: 2022 Schedule M1CD, Child and Dependent Care Credit, Line 6
1212
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1cd_22_0.pdf#page=6
13+
- title: 2023 Schedule M1CD, Child and Dependent Care Credit, Line 6
14+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1cd-23.pdf#page=6
1315

1416
brackets:
1517
- threshold:

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/cdcc/maximum_dependents.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1cd_21.pdf#page=1
1212
- title: 2022 Schedule M1CD, Child and Dependent Care Credit, Line 1
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1cd_22_0.pdf#page=1
14+
- title: 2023 Schedule M1CD, Child and Dependent Care Credit, Line 1
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1cd-23.pdf#page=1

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/cdcc/maximum_expense.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1cd_21.pdf#page=1
1212
- title: 2022 Schedule M1CD, Child and Dependent Care Credit, Line 1
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1cd_22_0.pdf#page=1
14+
- title: 2023 Schedule M1CD, Child and Dependent Care Credit, Line 1
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1cd-23.pdf#page=1

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/cdcc/phaseout_rate.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1cd_21.pdf#page=6
1212
- title: 2022 Schedule M1CD, Child and Dependent Care Credit, Worksheet for Line 8
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1cd_22_0.pdf#page=6
14+
- title: 2023 Schedule M1CD, Child and Dependent Care Credit, Line 8
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1cd-23.pdf#page=6

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/cdcc/phaseout_threshold.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ description: Minnesota has a child/dependent care credit which begins to be phas
22
values:
33
2021-01-01: 53_630
44
2022-01-01: 55_300
5+
2023-01-01: 59_210
56

67
metadata:
78
period: year
@@ -12,3 +13,5 @@ metadata:
1213
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1cd_21.pdf#page=6
1314
- title: 2022 Schedule M1CD, Child and Dependent Care Credit, Worksheet for Line 8
1415
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1cd_22_0.pdf#page=6
16+
- title: 2023 Schedule M1CD, Child and Dependent Care Credit, Line 8
17+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1cd-23.pdf#page=1

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/marriage/income_sources.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
reference:
1212
- title: 2021 Minnesota Schedule M1MA, Line 19
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_21.pdf
14+
- title: 2023 Minnesota Schedule M1MA, Line 1-4
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1ma-23.pdf
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
description: Minnesota provides a marriage credit for joint filers where this the threshold in line 8 for computing the credit one way or another.
2+
values:
3+
2020-01-01: 0
4+
2023-01-01: 114_000
5+
6+
metadata:
7+
period: year
8+
unit: currency-USD
9+
label: Minnesota marriage credit line 8 threshold amount amount
10+
reference:
11+
- title: 2023 Minnesota Schedule M1MA, Line 8
12+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1ma-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/marriage/maximum_amount.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ description: Minnesota provides a marriage credit for joint filers where this is
22
values:
33
2021-01-01: 1_548
44
2022-01-01: 1_596
5+
2023-01-01: 1_710
56

67
metadata:
78
period: year
@@ -12,3 +13,5 @@ metadata:
1213
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_21.pdf
1314
- title: 2022 Minnesota Schedule M1MA, Line 19
1415
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_22.pdf
16+
- title: 2023 Minnesota Schedule M1MA, Line 19
17+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1ma-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/marriage/minimum_individual_income.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
description: Minnesota provides a marriage credit for joint filers where the lesser income of the two spouses is at least this minimum amount.
22
values:
33
2021-01-01: 26_000
4+
2023-01-01: 28_000
45

56
metadata:
67
period: year
@@ -11,3 +12,5 @@ metadata:
1112
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_21.pdf
1213
- title: 2022 Minnesota Schedule M1MA, Line 6
1314
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_22.pdf
15+
- title: 2023 Minnesota Schedule M1MA, Line 6
16+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1ma-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/marriage/minimum_taxable_income.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ description: Minnesota provides a marriage credit for joint filers where their t
22
values:
33
2021-01-01: 40_000
44
2022-01-01: 42_000
5+
2023-01-01: 43_000
56

67
metadata:
78
period: year
@@ -12,3 +13,5 @@ metadata:
1213
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_21.pdf
1314
- title: 2022 Minnesota Schedule M1MA, Line 7
1415
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_22.pdf
16+
- title: 2023 Minnesota Schedule M1MA, Line 7
17+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1ma-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/marriage/standard_deduction_fraction.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_21.pdf
1212
- title: 2022 Minnesota Schedule M1MA, Line 10
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1ma_22.pdf
14+
- title: 2023 Minnesota Schedule M1MA, Line 10
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1ma-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/nonrefundable.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ metadata:
1212
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1c_21.pdf
1313
- title: 2022 Schedule M1C, Nonrefundable Credits
1414
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1c_22.pdf
15+
- title: 2023 Schedule M1C, Nonrefundable Credits
16+
href: https://www.revenue.state.mn.us/sites/default/files/2024-01/m1c-23.pdf

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/eligible/childless_adult_age/maximum.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revisor.mn.gov/statutes/2021/cite/290.0671
1212
- title: 2022 Minnesota Statutes, section 290.0671
1313
href: https://www.revisor.mn.gov/statutes/cite/290.0671
14+
- title: 2023 Minnesota Statutes, section 290.0671
15+
href: https://www.revisor.mn.gov/statutes/cite/290.0671

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/eligible/childless_adult_age/minimum.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revisor.mn.gov/statutes/2021/cite/290.0671
1212
- title: 2022 Minnesota Statutes, section 290.0671
1313
href: https://www.revisor.mn.gov/statutes/cite/290.0671
14+
- title: 2023 Minnesota Statutes, section 290.0671
15+
href: https://www.revisor.mn.gov/statutes/cite/290.0671

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/phase_in/earnings_maximum.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,33 @@ metadata:
1414
href: https://www.revisor.mn.gov/statutes/cite/290.0671
1515
- title: 2022 Inflation-Adjusted Amounts in Minnesota Statutes
1616
href: https://www.revenue.state.mn.us/sites/default/files/2021-12/Inflation_Adjustments_TY_2022.pdf#page=2
17+
- title: 2023 Minnesota Statutes, section 290.0671
18+
href: https://www.revisor.mn.gov/statutes/cite/290.0671
19+
- title: 2023 Inflation-Adjusted Amounts in Minnesota Statutes
20+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/inflation-adjustments-ty-2023-update.pdf#page=3
1721

1822
brackets:
1923
- threshold:
2024
2021-01-01: 0
2125
amount:
2226
2021-01-01: 7_340
2327
2022-01-01: 7_570
28+
2023-01-01: 8_750
2429
- threshold:
2530
2021-01-01: 1
2631
amount:
2732
2021-01-01: 12_270
2833
2022-01-01: 12_650
34+
2023-01-01: 9_675
2935
- threshold:
3036
2021-01-01: 2
3137
amount:
3238
2021-01-01: 20_120
3339
2022-01-01: 20_750
40+
2023-01-01: 10_850
3441
- threshold:
3542
2021-01-01: 3
3643
amount:
3744
2021-01-01: 20_530
3845
2022-01-01: 21_170
46+
2023-01-01: 11_250

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/phase_in/rate.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,27 @@ metadata:
1010
href: https://www.revisor.mn.gov/statutes/2021/cite/290.0671
1111
- title: 2022 Minnesota Statutes, section 290.0671
1212
href: https://www.revisor.mn.gov/statutes/cite/290.0671
13+
- title: 2023 Minnesota Statutes, section 290.0671
14+
href: https://www.revisor.mn.gov/statutes/cite/290.0671
1315

1416
brackets:
1517
- threshold:
1618
2021-01-01: 0
1719
amount:
1820
2021-01-01: 0.039
21+
2023-01-01: 0.04
1922
- threshold:
2023
2021-01-01: 1
2124
amount:
2225
2021-01-01: 0.0935
26+
2023-01-01: 0.04
2327
- threshold:
2428
2021-01-01: 2
2529
amount:
2630
2021-01-01: 0.11
31+
2023-01-01: 0.04
2732
- threshold:
2833
2021-01-01: 3
2934
amount:
3035
2021-01-01: 0.125
36+
2023-01-01: 0.04

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/phase_out/rate.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,27 @@ metadata:
1010
href: https://www.revisor.mn.gov/statutes/2021/cite/290.0671
1111
- title: 2022 Minnesota Statutes, section 290.0671
1212
href: https://www.revisor.mn.gov/statutes/cite/290.0671
13+
- title: 2023 Minnesota Statutes, section 290.0671
14+
href: https://www.revisor.mn.gov/statutes/cite/290.0671
1315

1416
brackets:
1517
- threshold:
1618
2021-01-01: 0
1719
amount:
1820
2021-01-01: 0.02
21+
2023-01-01: 0.09
1922
- threshold:
2023
2021-01-01: 1
2124
amount:
2225
2021-01-01: 0.06
26+
2023-01-01: 0.09
2327
- threshold:
2428
2021-01-01: 2
2529
amount:
2630
2021-01-01: 0.105
31+
2023-01-01: 0.09
2732
- threshold:
2833
2021-01-01: 3
2934
amount:
3035
2021-01-01: 0.105
36+
2023-01-01: 0.09

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/phase_out/threshold/joint.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,33 @@ metadata:
1414
href: https://www.revisor.mn.gov/statutes/cite/290.0671
1515
- title: 2022 Inflation-Adjusted Amounts in Minnesota Statutes
1616
href: https://www.revenue.state.mn.us/sites/default/files/2021-12/Inflation_Adjustments_TY_2022.pdf#page=2
17+
- title: 2023 Minnesota Statutes, section 290.0671
18+
href: https://www.revisor.mn.gov/statutes/cite/290.0671
19+
- title: 2023 Inflation-Adjusted Amounts in Minnesota Statutes
20+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/inflation-adjustments-ty-2023-update.pdf#page=3
1721

1822
brackets:
1923
- threshold:
2024
2021-01-01: 0
2125
amount:
2226
2021-01-01: 14_960
2327
2022-01-01: 15_430
28+
2023-01-01: 35_000
2429
- threshold:
2530
2021-01-01: 1
2631
amount:
2732
2021-01-01: 29_380
2833
2022-01-01: 30_290
34+
2023-01-01: 35_000
2935
- threshold:
3036
2021-01-01: 2
3137
amount:
3238
2021-01-01: 33_720
3339
2022-01-01: 34_770
40+
2023-01-01: 35_000
3441
- threshold:
3542
2021-01-01: 3
3643
amount:
3744
2021-01-01: 34_030
3845
2022-01-01: 35_090
46+
2023-01-01: 35_000

fiscalsim_us/parameters/gov/states/mn/tax/income/credits/wfc/phase_out/threshold/other.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,33 @@ metadata:
1414
href: https://www.revisor.mn.gov/statutes/cite/290.0671
1515
- title: 2022 Inflation-Adjusted Amounts in Minnesota Statutes
1616
href: https://www.revenue.state.mn.us/sites/default/files/2021-12/Inflation_Adjustments_TY_2022.pdf#page=2
17+
- title: 2023 Minnesota Statutes, section 290.0671
18+
href: https://www.revisor.mn.gov/statutes/cite/290.0671
19+
- title: 2023 Inflation-Adjusted Amounts in Minnesota Statutes
20+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/inflation-adjustments-ty-2023-update.pdf#page=3
1721

1822
brackets:
1923
- threshold:
2024
2021-01-01: 0
2125
amount:
2226
2021-01-01: 8_960
2327
2022-01-01: 9_240
28+
2023-01-01: 29_500
2429
- threshold:
2530
2021-01-01: 1
2631
amount:
2732
2021-01-01: 23_380
2833
2022-01-01: 24_110
34+
2023-01-01: 29_500
2935
- threshold:
3036
2021-01-01: 2
3137
amount:
3238
2021-01-01: 27_720
3339
2022-01-01: 28_590
40+
2023-01-01: 29_500
3441
- threshold:
3542
2021-01-01: 3
3643
amount:
3744
2021-01-01: 28_030
3845
2022-01-01: 28_900
46+
2023-01-01: 29_500

fiscalsim_us/parameters/gov/states/mn/tax/income/deductions/medical_and_dental_mult.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ metadata:
1111
href: https://www.revenue.state.mn.us/sites/default/files/2023-02/m1sa_21.pdf
1212
- title: 2022 M1SA, Minnesota Itemized Deductions, Line 3
1313
href: https://www.revenue.state.mn.us/sites/default/files/2023-01/m1sa_22.pdf
14+
- title: 2023 M1SA, Minnesota Itemized Deductions, Line 3
15+
href: https://www.revenue.state.mn.us/sites/default/files/2023-12/m1sa-23.pdf

0 commit comments

Comments
 (0)