Family has an unsupported child
Social Security Boolean MONTH Family Formula Included used 1 timeValue type Boolean . Default value false Entity family
How is this calculated?
To calculate this variable, the following input is used
- 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__is_a_child child means a single person under the age of 18 years, other than a person who is— (a) aged 16 years or 17 years; and (b) financially independent
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean social_security__is_financially_independent financially independent, in relation to a person, means— (a) in full employment; or (b) in receipt of a basic grant or an independent circumstances grant under the Student Allowances Regulations 1998 (SR 1998/277); or (c) in receipt of payments under a Government-assisted scheme which the chief executive considers analogous to a main benefit under this Act; or (d) in receipt of a main benefit under this Act
- Boolean social_security__in_receipt_of_basic_grant in receipt of a basic grant or an independent circumstances grant under the Student Allowances Regulations 1998 (SR 1998/277)
- Boolean social_security__is_in_full_employment Is in full employment or full-time employment
- Boolean social_security__recieves_goverment_assisted_scheme_payments In receipt of payments under a Government-assisted scheme which the chief executive considers analogous to a main benefit under Socal Security Act
- Boolean social_security__recieves_main_benefit in receipt of a main benefit under Social Security Act
- Boolean social_security__parents_unable_to_provide_sufficient_care because of a breakdown in the child’s family, no natural parent, adoptive parent, or step-parent of the child is able to care for the child or to provide fully for the child’s support
Where is this used?
This variable is referred to by these other variables in their own calculations
- Boolean social_security__eligible_for_unsupported_childs_benefit Eligible for Unsupported child’s benefit
Formulas
This is the formula used to calculate the value of social_security__has_unsupported_child_in_family
0001-01-01
This formula is used for scenarios from the date 0001-01-01 onwards. More info on formulas
def formula(families, period, parameters):
children = families.members('social_security__is_a_child', period)
parents_unable = families.members(
'social_security__parents_unable_to_provide_sufficient_care', period)
resident_or_citizen = families.members(
'is_citizen_or_resident', period)
return families.any((children * parents_unable * resident_or_citizen), role=Family.CHILD)