-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DC property tax credit take-up (#5470)
* DC property tax credit take-up Fixes #5446 * var name * default * defined for
- Loading branch information
1 parent
014fb16
commit de75174
Showing
4 changed files
with
26 additions
and
1 deletion.
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: | ||
- DC property tax credit take up. |
11 changes: 11 additions & 0 deletions
11
policyengine_us/parameters/gov/states/dc/tax/income/credits/ptc/takeup.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,11 @@ | ||
description: The share of eligible individuals who claim the DC property tax credit. | ||
metadata: | ||
unit: /1 | ||
label: DC property tax credit takeup rate | ||
period: year | ||
reference: | ||
- title: District of Columbia Tax Expenditure Report, 2024 | ||
href: https://ora-cfo.dc.gov/sites/default/files/dc/sites/ora-cfo/publication/attachments/2024%20Tax%20Expenditure%20Report.pdf#page=234 | ||
values: | ||
# 37,133 (Values derived from the 2024 Tax Expenditure Report) / 131,791,388 (PolicyEngine DC PTC value estimate) | ||
2021-01-01: 0.32 |
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
10 changes: 10 additions & 0 deletions
10
policyengine_us/variables/gov/states/dc/tax/income/credits/takes_up_dc_ptc.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,10 @@ | ||
from policyengine_us.model_api import * | ||
|
||
|
||
class takes_up_dc_ptc(Variable): | ||
value_type = bool | ||
entity = TaxUnit | ||
label = "Takes up the DC property tax credit" | ||
definition_period = YEAR | ||
defined_for = StateCode.DC | ||
default_value = True |