-
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.
Merge pull request #469 from YiweiJ/YiweiJ/issue466
British Columbia Basic Personal Amount
- Loading branch information
Showing
6 changed files
with
55 additions
and
32 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 basic personal amount. |
16 changes: 16 additions & 0 deletions
16
...ine_canada/parameters/gov/provinces/bc/tax/income/credits/basic_personal_amount/base.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,16 @@ | ||
description: British Columbia provides the following basic personal amount. | ||
values: | ||
2022-01-01: 11_302 | ||
2023-01-01: 11_981 | ||
metadata: | ||
unit: currency-CAD | ||
period: year | ||
label: British Columbia basic personal amount | ||
reference: | ||
- title: 2022 British Columbia, Personal Tax Credits Return, TD1BC | ||
href: https://tsaykeh.com/files/pdf/1650179447_BC%20Tax%20Form.pdf#page=1 | ||
- 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 | ||
# The income tax act specifies inflation unadjusted amounts | ||
- title: British Columbia Income Tax Act, Division 2, 4.3, 1.1 | ||
href: https://www.bclaws.gov.bc.ca/civix/document/id/complete/statreg/96215_01 |
7 changes: 5 additions & 2 deletions
7
policyengine_canada/parameters/gov/provinces/bc/tax/income/credits/non_refundable.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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
description: British Columbia list of non-refundable tax credits. | ||
description: British Columbia provides the following non-refundable tax credits. | ||
values: | ||
2022-01-01: | ||
- bc_tax_reduction_credit | ||
- bc_age_credit | ||
- bc_basic_personal_amount | ||
|
||
metadata: | ||
unit: program | ||
unit: list | ||
period: year | ||
label: British Columbia non-refundable tax credits |
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
13 changes: 13 additions & 0 deletions
13
...s/gov/provinces/bc/tax/income/credits/basic_personal_amount/bc_basic_personal_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,13 @@ | ||
- name: 2023 Basic personal amount | ||
period: 2023 | ||
input: | ||
province_code: BC | ||
output: | ||
bc_basic_personal_amount: 11_981 | ||
|
||
- name: 2022 Basic personal amount | ||
period: 2022 | ||
input: | ||
province_code: BC | ||
output: | ||
bc_basic_personal_amount: 11_302 |
17 changes: 17 additions & 0 deletions
17
...les/gov/provinces/bc/tax/income/credits/basic_personal_amount/bc_basic_personal_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,17 @@ | ||
from policyengine_canada.model_api import * | ||
|
||
|
||
class bc_basic_personal_amount(Variable): | ||
value_type = float | ||
entity = Person | ||
label = "British Columbia basic personal amount" | ||
unit = CAD | ||
definition_period = YEAR | ||
reference = "https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/td1bc/td1bc-23e.pdf#page=1" | ||
defined_for = ProvinceCode.BC | ||
|
||
def formula(person, period, parameters): | ||
p = parameters( | ||
period | ||
).gov.provinces.bc.tax.income.credits.basic_personal_amount | ||
return p.base |