Eligible for Home Help
Home Help Boolean MONTH Person Formula Included used 0 timesValue type Boolean . Default value false Entity person
How is this calculated?
To calculate this variable, the following input is used
- Boolean has_community_services_card Has a current Community Services Card
- Boolean has_dependent_child has a dependent child or dependent children
- Boolean home_help__adopted_2_or_more_children Have or adopted twins, and already has another child under 5.
- Boolean home_help__had_multiple_birth Had a multiple birth from the same pregnancy
- Boolean home_help__has_no_immediate_family Has no immediate family or anyone else living with you who can help
- Boolean is_citizen_or_resident NZ Citizen or Resident
- 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
- Boolean social_security__eligible_for_community_services_card is eligible for Community Services Card
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean community_services_card__below_income_threshold Income is below Community Services Card threshold?
- Boolean family_scheme__qualifies_for_working_for_families Is a person is qualified as eligible for the working for families
- Boolean family_scheme__base_qualifies Is a person qualified as eligible under the family scheme
- Boolean family_scheme__caregiver_age_qualifies Is a person qualified under the family scheme age parameters
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean family_scheme__qualifies_as_principal_carer Is the person the principal caregiver and do they have dependent children
- Boolean family_scheme__has_dependent_children A family has one or more people who qualify as financially dependant children
- Boolean income_tax__dependent_child Determines if a Person is classified as financially dependant
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean income_tax__residence Boolean for if a Person is classified as meeting residence requirements
- Boolean veterans_support__received_childrens_pension Is classified as receiving a children's pension
- Boolean veterans_support__received_parents_allowance Is classified as receiving a parent's allowance
- Boolean is_citizen_or_resident NZ Citizen or Resident
- 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
- Boolean social_security__has_dependant_child has a dependent child (or children)
- Boolean social_security__is_fulltime_student Is a Full-time student
- Boolean social_security__is_ordinarily_resident_in_new_zealand is ordinarily resident in New Zealand
- Boolean social_security__received_child_disability_allowance Received Child Disability Allowance
- Boolean social_security__received_income_tested_benefit Boolean for if a Person is classified as receiving an income tested benefit
- Boolean social_security__received_orphans_benefit Received Orphan's Benefit
- Boolean social_security__received_residential_care_subsidy Received Residential Care Subsidy
- Boolean social_security__received_superannuation Received Superannuation
- Boolean social_security__received_unsupported_childs_benefit Received Unsupported Child's Benefit
- Boolean veterans_support__received_veterans_pension Received Veteran's Pension
- Boolean veterans_support__received_weekly_compensation Received Weekly Compensation
- Boolean veterans_support__received_weekly_income_compensation Received Weekly Income Compensation
- Boolean social_security__is_ordinarily_resident_in_new_zealand is ordinarily resident in New Zealand
Formulas
This is the formula used to calculate the value of home_help__eligible_for_home_help
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):
resident_or_citizen = persons('is_citizen_or_resident', period)
in_nz = persons('social_security__is_ordinarily_resident_in_new_zealand', period)
return resident_or_citizen * in_nz * persons.has_role(Family.PRINCIPAL_CAREGIVER) *\
(
persons('home_help__had_multiple_birth', period)
+ persons('home_help__adopted_2_or_more_children', period)
+ (
persons('has_dependent_child', period) * persons('home_help__has_no_immediate_family', period)
* (persons('has_community_services_card', period) + persons('social_security__eligible_for_community_services_card', period))
)
)