Skip to content

Commit

Permalink
Montana 2022 / 2023 property tax rebates (#5381)
Browse files Browse the repository at this point in the history
* 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
vrathi101 and PavelMakarchuk authored Dec 5, 2024
1 parent 0f7afc2 commit b4b08c9
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 0 deletions.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
added:
- Montana property tax rebate.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ description: Montana provides the following non-refundable tax credits.
values:
2021-01-01:
- mt_capital_gain_credit
2022-01-01:
- mt_capital_gain_credit
- mt_property_tax_rebate
2023-01-01:
- mt_capital_gain_credit
- mt_income_tax_rebate
- mt_property_tax_rebate
2024-01-01: []
metadata:
unit: list
Expand Down
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
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
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)

0 comments on commit b4b08c9

Please sign in to comment.