Is each person classified as eligible for best start tax credit
Best Start Boolean MONTH Person Formula Included used 1 timeValue type Boolean . Default value false Entity person
How is this calculated?
To calculate this variable, the following input is used
- Boolean best_start__family_has_children_eligible Is each family classified as eligible for best start tax credit
- Int age_of_youngest The age of the youngest member of a family
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Date date_of_birth Birth date
- Date due_date_of_birth Birth due date
- 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
Where is this used?
This variable is referred to by these other variables in their own calculations
- Float best_start__entitlement The total value the principal carer is entitled to for the best start tax credit
Formulas
This is the formula used to calculate the value of best_start__eligibility
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):
qualifies = persons('family_scheme__base_qualifies', period)
family_is_eligible = persons.family(
'best_start__family_has_children_eligible', period)
received_parents_allowance = persons(
'veterans_support__received_parents_allowance', period)
received_childrens_pension = persons(
'veterans_support__received_childrens_pension', period)
# also does not qualify if receives
# (i) a parental tax credit:
# (iii) a parental leave payment or preterm baby payment under Part 7A of the Parental Leave and Employment Protection Act 1987.
return qualifies * family_is_eligible * not_(received_parents_allowance) * not_(received_childrens_pension)