Is a person qualified as eligible under the family scheme
Family Scheme Boolean MONTH Person Formula Included used 7 timesValue type Boolean . Default value false Entity person
How is this calculated?
To calculate this variable, the following input is used
- 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
Where is this used?
This variable is referred to by these other variables in their own calculations
- Boolean best_start__eligibility Is each person classified as eligible for best start tax credit
- Boolean family_scheme__qualifies_for_child_tax_credit Is a person qualified as eligible for the child tax credit
- Boolean family_scheme__qualifies_for_family_tax_credit Is a person qualified as eligible for the family tax credit
- Boolean family_scheme__qualifies_for_in_work_tax_credit Is a person is qualified as eligible for the in-work tax credit
- Boolean family_scheme__qualifies_for_minimum_family_tax_credit Is a person is qualified as eligible for the minimum family tax credit
- Boolean family_scheme__qualifies_for_parental_tax_credit Is a person is qualified as eligible for the parental tax credit
- Boolean family_scheme__qualifies_for_working_for_families Is a person is qualified as eligible for the working for families
Formulas
This is the formula used to calculate the value of family_scheme__base_qualifies
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):
age_qualifies = persons('family_scheme__caregiver_age_qualifies', period)
principle_carer = persons('family_scheme__qualifies_as_principal_carer', period)
residence = persons('income_tax__residence', period) # this is for caregiver OR child, clarify the test
return age_qualifies * principle_carer * residence