-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Montana 2022 / 2023 property tax rebates (#5381)
* Montana 2022 / 2023 property tax rebates * adding changelog * fixes * adding 2022 tax form * Update policyengine_us/parameters/gov/states/mt/tax/income/credits/rebate/property/amount.yaml --------- Co-authored-by: Pavel Makarchuk <[email protected]>
- Loading branch information
1 parent
0f7afc2
commit b4b08c9
Showing
5 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- bump: minor | ||
changes: | ||
added: | ||
- Montana property tax rebate. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
policyengine_us/parameters/gov/states/mt/tax/income/credits/rebate/property/amount.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
description: Montana provides the following property tax rebate amount. | ||
values: | ||
2022-01-01: 675 | ||
metadata: | ||
period: year | ||
unit: currency-USD | ||
label: Montana property tax rebate amount | ||
reference: | ||
- title: 2023 Montana Form 2 Individual Income Tax Instructions, What's New?, Property Tax Rebates | ||
href: https://mtrevenue.gov/wp-content/uploads/dlm_uploads/2023/12/Form_2_2023_Instructions.pdf#page=5 | ||
- title: 2022 Montana Property Tax Rebate Claim, Form MPTR22 | ||
href: https://mtrevenue.gov/wp-content/uploads/dlm_uploads/2023/08/2022-Montana-Property-Tax-Rebate-Form-MPTR22.pdf | ||
# The Legal code provides a lower rebate amount - applying the tax form instructions value | ||
- title: 2023 Montana Legislature, House Bill 222 | ||
href: https://archive.legmt.gov/bills/2023/billhtml/HB0222.htm#:~:text=A%20BILL%20FOR%20AN%20ACT,providing%20a%20penalty%20for%20false |
15 changes: 15 additions & 0 deletions
15
...tests/policy/baseline/gov/states/mt/tax/income/credits/rebate/mt_property_tax_rebate.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
- name: Property tax less than rebate amount | ||
period: 2023 | ||
input: | ||
real_estate_taxes: 600 | ||
state_code: MT | ||
output: | ||
mt_property_tax_rebate: 600 | ||
|
||
- name: Property tax less than rebate amount | ||
period: 2023 | ||
input: | ||
real_estate_taxes: 676 | ||
state_code: MT | ||
output: | ||
mt_property_tax_rebate: 675 |
18 changes: 18 additions & 0 deletions
18
policyengine_us/variables/gov/states/mt/tax/income/credits/mt_property_tax_rebate.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from policyengine_us.model_api import * | ||
|
||
|
||
class mt_property_tax_rebate(Variable): | ||
value_type = float | ||
entity = TaxUnit | ||
label = "Montana property tax rebate" | ||
unit = USD | ||
definition_period = YEAR | ||
reference = "https://mtrevenue.gov/wp-content/uploads/dlm_uploads/2023/12/Form_2_2023_Instructions.pdf#page=5" | ||
defined_for = StateCode.MT | ||
|
||
def formula(tax_unit, period, parameters): | ||
p = parameters(period).gov.states.mt.tax.income.credits.rebate.property | ||
person = tax_unit.members | ||
mt_property_tax = person("real_estate_taxes", period) | ||
tax_unit_mt_property_tax = tax_unit.sum(mt_property_tax) | ||
return min_(p.amount, tax_unit_mt_property_tax) |