Skip to content

Commit

Permalink
Ohio Joint Filing Credit
Browse files Browse the repository at this point in the history
  • Loading branch information
mylittlebecca committed Oct 2, 2023
1 parent 4a146b2 commit 6906709
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description: Ohio qualifies the joint filing credit for head and spouse each with Ohio adjusted gross income above this amount.
description: Ohio qualifies filer for the joint filing credit with adjusted gross income at or above this amount.
values:
2021-01-01: 500

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ def formula(tax_unit, period, parameters):
).gov.states.oh.tax.income.credits.joint_filing_credit
oh_agi = tax_unit("oh_agi", period)
exemption = tax_unit("oh_exemption", period)
magi_less_exepmtion = oh_agi - exemption
magi_less_exepmtion = max_(oh_agi - exemption, 0)
percentage = p.rate.calc(magi_less_exepmtion)
return min_(tax * percentage, p.max_amount)
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class oh_joint_filing_credit_eligible(Variable):
value_type = bool
entity = TaxUnit
label = "Eligible for Ohio Joint Filing Credit"
label = "Eligible for the Ohio Joint Filing Credit"
definition_period = YEAR
reference = "https://codes.ohio.gov/ohio-revised-code/section-5747.05"
defined_for = StateCode.OH
Expand Down

0 comments on commit 6906709

Please sign in to comment.