Family has a child under 6 years old and eligible for Disability Allowance and in minimum childcare hours per week
Social Security Regulation 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
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean disability_allowance__family_has_eligible_child Does the family have a child who meets the criteria for disabled
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean social_security__child_meets_child_disability_allowance_criteria Has serious disability
- Boolean social_security__child_with_serious_disability Child has serious disability
- Int social_security__medical_certification_months Number of future months the disability is expected to last for, in months
- Boolean social_security__requires_constant_care_and_attention Requires constant care and attention
- Int early_childcare_hours_participation_per_week Number of hours per week person is participating in approved early-childhood education programmes
- 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_dependent_child Is a dependent child
- Boolean is_dependent_child Is a dependent child
- 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
Where is this used?
This variable is referred to by these other variables in their own calculations
- Boolean social_security_regulation__eligible_for_childcare_subsidy Eligibility of child for payment of childcare subsidy
Formulas
This is the formula used to calculate the value of social_security_regulation__family_has_child_eligible_for_disability_allowance_child_under_6
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):
minimum_hours_participating = parameters(period).entitlements.social_security.childcare_subsidy.minimum_hours_in_childcare
dependent_children = families.members(
'social_security__is_dependent_child', period)
eligible_children = families(
'disability_allowance__family_has_eligible_child', period)
under_6 = families.members('age', period.start) < 6
citizens_and_residents = families.members(
'is_citizen_or_resident', period)
meets_early_childcare_hours_threshold = families.members('early_childcare_hours_participation_per_week', period) >= minimum_hours_participating
return families.any((dependent_children * citizens_and_residents * eligible_children * under_6 * meets_early_childcare_hours_threshold), role=Family.CHILD)