NZ Citizen or Resident
Boolean ETERNITY Person Formula Included used 15 timesValue type Boolean . Default value false Entity person
How is this calculated?
To calculate this variable, the following input is used
- Boolean is_nz_citizen New Zealand citizen means a person who has New Zealand citizenship as provided in the Citizenship Act 1977 or the Citizenship (Western Samoa) Act 1982
- Boolean is_permanent_resident Holder of a permanent resident visa
- Boolean immigration__holds_permanent_resident_visa Holder of a permanent resident visa
- Boolean is_resident Holder of a permanent resident visa or a resident visa
- Boolean immigration__holds_permanent_resident_visa Holder of a permanent resident visa
- Boolean immigration__holds_resident_visa Holder of a resident visa
Where is this used?
This variable is referred to by these other variables in their own calculations
- Boolean home_help__eligible_for_home_help Eligible for Home Help
- Boolean social_security__eligible_for_child_disability_allowance Eligible for Child Disability Allowance
- Boolean social_security__eligible_for_community_services_card is eligible for Community Services Card
- Boolean social_security__eligible_for_orphans_benefit Eligible for Orphan's benefit
- Boolean social_security__eligible_for_sole_parent_support Eligible for Sole Parent Support
- Boolean social_security__eligible_for_supported_living_payment Eligible for Supported Living Payment.
- Boolean social_security__eligible_for_unsupported_childs_benefit Eligible for Unsupported child’s benefit
- Boolean social_security__has_orphaned_child_in_family Family is caring for an orphan as per Social Security Act 1964
- Boolean social_security__has_unsupported_child_in_family Family has an unsupported child
- Boolean social_security__meets_residential_requirements_for_certain_benefits Residential requirements for certain benefits
- Boolean social_security_regulation__eligible_for_childcare_subsidy Eligibility of child for payment of childcare subsidy
- Boolean social_security_regulation__family_has_child_eligible_for_disability_allowance_child_under_6 Family has a child under 6 years old and eligible for Disability Allowance and in minimum childcare hours per week
- Boolean social_security_regulation__family_has_resident_child_aged_5_who_will_be_enrolled_in_school Family has resident child aged 5 who will be enrolled in school and in minimum childcare hours per week
- Boolean social_security_regulation__family_has_resident_child_under_5_not_in_school Family has a resident child who is under 5 years old, not in school and in minimum childcare hours per week
- Boolean super__eligibility Classified as eligible for NZ Super
Formulas
This is the formula used to calculate the value of is_citizen_or_resident
0001-01-01
This formula is used for scenarios from the date 0001-01-01 onwards. More info on formulas
def formula(persons, period, parameters):
return persons('is_nz_citizen', period) + persons('is_permanent_resident', period) + persons('is_resident', period)