Skip to content
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

Nova Scotia Pension Income Amount #474

Merged
merged 6 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog_entry.yaml
okeyiii marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
added:
- Nova Scotia pension income amount.
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
description: Nova Scotia max amount for pension income amount.
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
values:
2022-01-01: 1_173
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
metadata:
unit: currency-CAD
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
label: Nova Scotia pension income amount max amount
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
reference:
- title: 2022 Nova Scotia Personal Tax Credits Return
href: https://hr.acadiau.ca/files/sites/hr/Payroll/Pensions%20&%20Benefits/NS_TD1_2022.pdf#page=1
- title: 2022 Worksheet NS428
href: https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/5003-c/5003-c-22e.pdf#page=1
- title: Nova Scotia income tax act - subdivision c - Deduction for employment out of Canada
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
href: https://nslegislature.ca/sites/default/files/legc/statutes/income%20tax.pdf#page=28

PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
MaxGhenis marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
- name: Person has pension income lower than 1_173
period: 2023
input:
province_code: NS
pension_and_savings_plan_income: 1_172
output:
ns_pension_income_amount: 1_172

- name: Person has pension income equal to 1_173
period: 2023
input:
province_code: NS
pension_and_savings_plan_income: 1_173
output:
ns_pension_income_amount: 1_173

- name: Person has pension income higher than 1_173
period: 2023
input:
province_code: NS
pension_and_savings_plan_income: 1_180
output:
ns_pension_income_amount: 1_173

PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from policyengine_canada.model_api import *


class ns_pension_income_amount(Variable):
value_type = float
entity = Person
label = "Nova Scotia Pension Income Amount"
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved
unit = CAD
definition_period = YEAR
defined_for = ProvinceCode.NS
reference = (
"https://hr.acadiau.ca/files/sites/hr/Payroll/Pensions%20&%20Benefits/NS_TD1_2022.pdf#page=1",
"https://www.canada.ca/content/dam/cra-arc/formspubs/pbg/5003-c/5003-c-22e.pdf#page=1",
"https://nslegislature.ca/sites/default/files/legc/statutes/income%20tax.pdf#page=28",
)

def formula(person, period, parameters):
max_amount = parameters(
period
).gov.provinces.ns.tax.income.credits.pension_income_amount.max_amount
pension_income_amount = person("pension_and_savings_plan_income", period)

return min(pension_income_amount, max_amount)
PavelMakarchuk marked this conversation as resolved.
Show resolved Hide resolved