-
Notifications
You must be signed in to change notification settings - Fork 201
Add the Georgia itemizer tax credit #6722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
156481c
Add the Georgia itemizer tax credit
DTrim99 3de64e8
remove 2023 test
DTrim99 4f63ce3
reference
DTrim99 e2452f7
joint adjustment
DTrim99 dd989bd
comments
DTrim99 9be1868
defined for
DTrim99 3ec13ac
fix
DTrim99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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: | ||
| - Georgia Itemizer Tax Credit. |
14 changes: 14 additions & 0 deletions
14
policyengine_us/parameters/gov/states/ga/tax/income/credits/itemizer/amount.yaml
This file contains hidden or 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,14 @@ | ||
| description: Georgia provides this itemizer tax credit amount for resident taxpayers who itemize their deductions. | ||
| values: | ||
| 2024-01-01: 300 | ||
| metadata: | ||
| unit: currency-USD | ||
| period: year | ||
| label: Georgia itemizer tax credit amount | ||
| reference: | ||
| - title: 2024 Georgia Individual Income Tax Booklet, Page 17, Line 19 | ||
| href: https://dor.georgia.gov/document/document/2024-it-511-individual-income-tax-booklet/download#page=17 | ||
| - title: Official Code of Georgia Annotated | O.C.G.A. § 48-7-29.23 | ||
| href: https://law.justia.com/codes/georgia/2022/title-48/chapter-7/article-2/section-48-7-29-23/ | ||
| - title: Official Code of Georgia Annotated | O.C.G.A. § 48-7-1 (Definition of Resident) | ||
| href: https://law.justia.com/codes/georgia/2022/title-48/chapter-7/article-1/section-48-7-1/ | ||
This file contains hidden or 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
32 changes: 32 additions & 0 deletions
32
...yengine_us/tests/policy/baseline/gov/states/ga/tax/income/credits/ga_itemizer_credit.yaml
This file contains hidden or 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,32 @@ | ||
| - name: Georgia itemizer credit - itemizer receives credit | ||
| period: 2024 | ||
| input: | ||
| state_code: GA | ||
| tax_unit_itemizes: true | ||
| output: | ||
| ga_itemizer_credit: 300 | ||
|
|
||
| - name: Georgia itemizer credit - non-itemizer receives no credit | ||
| period: 2024 | ||
| input: | ||
| state_code: GA | ||
| tax_unit_itemizes: false | ||
| output: | ||
| ga_itemizer_credit: 0 | ||
|
|
||
| - name: Georgia itemizer credit - available in 2025 | ||
| period: 2025 | ||
| input: | ||
| state_code: GA | ||
| tax_unit_itemizes: true | ||
| output: | ||
| ga_itemizer_credit: 300 | ||
|
|
||
| - name: Georgia itemizer credit - high income itemizer receives credit | ||
| period: 2024 | ||
| input: | ||
| state_code: GA | ||
| adjusted_gross_income: 100_000 | ||
| tax_unit_itemizes: true | ||
| output: | ||
| ga_itemizer_credit: 300 |
23 changes: 23 additions & 0 deletions
23
policyengine_us/variables/gov/states/ga/tax/income/credits/ga_itemizer_credit.py
This file contains hidden or 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,23 @@ | ||
| from policyengine_us.model_api import * | ||
|
|
||
|
|
||
| class ga_itemizer_credit(Variable): | ||
| value_type = float | ||
| entity = TaxUnit | ||
| label = "Georgia itemizer tax credit" | ||
| unit = USD | ||
| definition_period = YEAR | ||
| reference = ( | ||
| "https://law.justia.com/codes/georgia/2022/title-48/chapter-7/article-2/section-48-7-29-23/", | ||
| # Definition of resident | ||
| "https://law.justia.com/codes/georgia/2022/title-48/chapter-7/article-1/section-48-7-1/", | ||
| ) | ||
DTrim99 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| defined_for = StateCode.GA | ||
|
|
||
| def formula(tax_unit, period, parameters): | ||
| # Full-year and part-year residents who itemize their deductions | ||
| # are entitled to a credit up to $300 per taxpayer | ||
| itemizes = tax_unit("tax_unit_itemizes", period) | ||
| p = parameters(period).gov.states.ga.tax.income.credits.itemizer | ||
| amount = p.amount | ||
| return where(itemizes, amount, 0) | ||
DTrim99 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.