Skip to content

Commit

Permalink
Northwest Territories Pension Credit
Browse files Browse the repository at this point in the history
Fixes #339
  • Loading branch information
zqw5219 committed Jul 20, 2023
1 parent 1106d86 commit b81246b
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ metadata:
reference:
- title: Income Tax Act - Age Credit page 29
href: https://www.justice.gov.nt.ca/en/files/legislation/income-tax/income-tax.a.pdf
- title:
- title: 2023 Northwest Territories Personal Tax Credits Return - pension income amount
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/td1nt/td1nt-23e.pdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
- name: under 18 years old without disability, not head of the family, no childcare cost
period: 2022
input:
province_code: NT
age: 17
is_disabled: false
is_head: false
childcare_costs: 0
output:
nt_disability_amount_self: 0

- name: under 18 years old without disability, not head of the family, with childcare cost over 3030
period: 2022
input:
province_code: NT
age: 17
is_disabled: false
is_head: false
childcare_costs: 3050
output:
nt_disability_amount_self: 0

- name: under 18 years old with disability, not head of the family, with childcare cost over 3030
period: 2022
input:
province_code: NT
age: 17
is_disabled: true
is_head: false
childcare_costs: 3050
output:
nt_disability_amount_self: 0

- name: under 18 years old with disability, is head of the family, with childcare cost over 3030
period: 2022
input:
province_code: NT
age: 17
is_disabled: true
is_head: true
childcare_costs: 3050
output:
nt_disability_amount_self: 17812

- name: under 18 years old with disability, is head of the family, without childcare cost
period: 2022
input:
province_code: NT
age: 17
is_disabled: true
is_head: true
childcare_costs: 0
output:
nt_disability_amount_self: 17832

- name: 18 years old with disability, is head of the family, with childcare cost over 3030
period: 2022
input:
province_code: NT
age: 18
is_disabled: true
is_head: true
childcare_costs: 3050
output:
nt_disability_amount_self: 12658

- name: over 18 years old with disability, is head of the family, with childcare cost over 3030
period: 2022
input:
province_code: NT
age: 19
is_disabled: true
is_head: true
childcare_costs: 3050
output:
nt_disability_amount_self: 12658

0 comments on commit b81246b

Please sign in to comment.