-
Notifications
You must be signed in to change notification settings - Fork 33
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
Manitoba Education Property Tax Credit #422
base: master
Are you sure you want to change the base?
Conversation
Fixes PolicyEngine#418 tests sessions to be modified
Fixes PolicyEngine#418 tests need to be modified
@@ -0,0 +1,9 @@ | |||
description: Manitoba provides different tax credits according to different age groups. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description: Manitoba provides the basic tax credits for filters at or above this age threshold.
2022-01-01: 65 | ||
metadata: | ||
unit: year | ||
label: Manitoba tax credit diference with people with different ages |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
label: Manitoba basic tax credit eligible age
values: | ||
2022-01-01: 0.625 | ||
metadata: | ||
unit: currency-CAD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unit: /1
values: | ||
2022-01-01: 0.00625 | ||
metadata: | ||
unit: currency-CAD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unit: /1
@@ -0,0 +1,9 @@ | |||
description: Manitoba provides the certain time amount for education property tax credit calculations. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description: Manitoba the number of days in a legal year.
2022-01-01: 365 | ||
metadata: | ||
unit: year | ||
label: Manitoba time amount for education property tax credit calculations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
label: Manitoba the number of days in a legal year
unit = CAD | ||
definition_period = YEAR | ||
defined_for = ProvinceCode.MB | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add legal reference here.
@@ -0,0 +1,9 @@ | |||
description: Manitoba provides different tax credits according to different age groups. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename this file to "age_eligibility.yaml"
|
||
age = person("age", period) | ||
age_eligible = age >= p.age_amount | ||
age_ineligible = ~age_eligible |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete this. You can represent it by using "~age_eligible" directly.
Fixes #418
tests sessions to be modified