Person is a beneficiary
Social Security 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 social_security__is_being_paid_an_emergency_benefit Is being paid a young parent payment
- Boolean social_security__is_being_paid_a_supported_living_payment Is being paid a supported living payment
- Boolean social_security__is_being_paid_a_young_parent_payment Is being paid a a young parent payment
- Boolean social_security__is_being_paid_a_youth_payment Is being paid a a youth payment
- Boolean social_security__is_being_paid_jobseeker_benefit Is being paid Jobseeker
- Boolean social_security__is_being_paid_sole_parent_support Is being paid sole parent support
- Boolean super__is_being_paid_nz_superannuation New Zealand superannuation
- Boolean veterans_support__is_being_paid_a_veterans_pension Is being paid a Veteran's Pension
Formulas
This is the formula used to calculate the value of social_security__is_a_beneficiary
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):
return persons('social_security__is_being_paid_jobseeker_benefit', period) + \
persons('social_security__is_being_paid_sole_parent_support', period) + \
persons('social_security__is_being_paid_a_supported_living_payment', period) + \
persons('social_security__is_being_paid_a_youth_payment', period) + \
persons('social_security__is_being_paid_a_young_parent_payment', period) + \
persons('social_security__is_being_paid_an_emergency_benefit', period) + \
persons('super__is_being_paid_nz_superannuation', period) + \
persons('veterans_support__is_being_paid_a_veterans_pension', period)