-
Notifications
You must be signed in to change notification settings - Fork 201
Fix New Jersey gross income computation #6773
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| - bump: patch | ||
| changes: | ||
| fixed: | ||
| - Fix New Jersey gross income computation. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,12 @@ | ||||||
| description: New Jersey additions to gross income. These are amounts added back to gross income that may have been excluded or deducted for federal purposes. | ||||||
| metadata: | ||||||
| unit: list | ||||||
| period: year | ||||||
| label: New Jersey additions to gross income | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| reference: | ||||||
| - title: NJ Statute 54A:5-1 - Additions to gross income | ||||||
| href: https://law.justia.com/codes/new-jersey/title-54a/section-54a-5-1/ | ||||||
| - title: NJ-1040 Tax Form, Lines 28-38 | ||||||
| href: https://www.nj.gov/treasury/taxation/pdf/current/1040.pdf | ||||||
| values: | ||||||
| 2021-01-01: [] # Currently no additions implemented; update as needed | ||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,26 @@ | ||||||
| description: New Jersey income sources that comprise gross income. | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| metadata: | ||||||
| unit: list | ||||||
DTrim99 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| period: year | ||||||
| label: New Jersey gross income sources | ||||||
| reference: | ||||||
| - title: NJ Statute 54A:5-1 - Gross income defined | ||||||
| href: https://law.justia.com/codes/new-jersey/title-54a/section-54a-5-1/ | ||||||
| - title: NJ-1040 Tax Form | ||||||
| href: https://www.nj.gov/treasury/taxation/pdf/current/1040.pdf | ||||||
| values: | ||||||
| 2021-01-01: | ||||||
| - employment_income # Line 15: Wages, salaries, tips (Category a) | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||
| - taxable_interest_income # Line 16a: Interest (Category e) | ||||||
| - dividend_income # Line 17: Dividends (Category f) | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. qualified and non-qualified? |
||||||
| - self_employment_income # Line 18: Net business profits (Category b) | ||||||
| - farm_income # Line 18: Farm income (Category b) | ||||||
| - long_term_capital_gains # Line 19: Long-term capital gains (Category c) | ||||||
| - short_term_capital_gains # Line 19: Short-term capital gains (Category c) | ||||||
| - taxable_pension_income # Line 20a: Pensions (Category j) | ||||||
| - taxable_ira_distributions # Line 20a: IRA distributions (Category j) | ||||||
| - partnership_s_corp_income # Lines 21-22: Partnership & S-corp (Categories k, p) | ||||||
| - rental_income # Line 23: Rents, royalties (Category d) | ||||||
| - gambling_winnings # Line 24: Gambling (Category g) | ||||||
| - alimony_income # Line 25: Alimony received (Category n) | ||||||
| - miscellaneous_income # Line 26: Other income | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| from policyengine_us.model_api import * | ||
|
|
||
|
|
||
| class nj_gross_income(Variable): | ||
| value_type = float | ||
| entity = Person | ||
| label = "New Jersey gross income" | ||
| unit = USD | ||
| documentation = "Gross income calculated from specific income categories per NJ statute, before additions and subtractions. This is built from gross income sources, not federal AGI." | ||
| definition_period = YEAR | ||
| reference = ( | ||
| "https://law.justia.com/codes/new-jersey/title-54a/section-54a-5-1/", | ||
| "https://www.nj.gov/treasury/taxation/pdf/current/1040.pdf", # Lines 15-27 | ||
| ) | ||
| defined_for = StateCode.NJ | ||
|
|
||
| adds = "gov.states.nj.tax.income.gross_income_sources" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.