-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
British Columbia Pension Income Amount
Fixes #470
- Loading branch information
Showing
4 changed files
with
48 additions
and
0 deletions.
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: | ||
- British Columbia pension income amount. |
11 changes: 11 additions & 0 deletions
11
...gine_canada/parameters/gov/provinces/bc/tax/income/credits/pension_income_amount/cap.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: British Columbia provides this maximum pension benefit. | ||
values: | ||
2022-01-01: 1_000 | ||
metadata: | ||
unit: currency-CAD | ||
label: British Columbia pension benefit max amount | ||
reference: | ||
- title: 2023 British Columbia Personal Tax Credits Return, TD1BC | ||
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/td1bc/td1bc-23e.pdf#page=1 | ||
- title: British Columbia Income Tax Act § 4.32 | ||
href: https://www.bclaws.gov.bc.ca/civix/document/id/complete/statreg/96215_00_multi#section4.32 |
15 changes: 15 additions & 0 deletions
15
...ov/provinces/bc/tax/income/credits/bc_pension_income_amount/bc_pension_income_amount.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,15 @@ | ||
- name: Max Pension Benefit | ||
period: 2023 | ||
input: | ||
province_code: BC | ||
pension_and_savings_plan_income: 1_001 | ||
output: | ||
bc_pension_income_amount: 1_000 | ||
|
||
- name: Pension Benefit Below Maximum Amount | ||
period: 2023 | ||
input: | ||
province_code: BC | ||
pension_and_savings_plan_income: 800 | ||
output: | ||
bc_pension_income_amount: 800 |
18 changes: 18 additions & 0 deletions
18
...les/gov/provinces/bc/tax/income/credits/pension_income_amount/bc_pension_income_amount.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,18 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class bc_pension_income_amount(Variable): | ||
value_type = float | ||
entity = Person | ||
label = "British Columbia pension income amount" | ||
unit = CAD | ||
definition_period = YEAR | ||
defined_for = ProvinceCode.BC | ||
|
||
def formula(person, period, parameters): | ||
pension_income = person("pension_and_savings_plan_income", period) | ||
max_amount = parameters( | ||
period | ||
).gov.provinces.bc.tax.income.credits.pension_income_amount.cap | ||
# Capped at a certain amount | ||
return min_(max_amount, pension_income) |