statisfies criteria such that the Minister may authorise the grant of New Zealand citizenship to this person
Citizenship Boolean DAY 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
- Int age The age of a Person (in years)
- Date date_of_birth Birth date
- Boolean citizenship__has_sufficient_knowledge_of_the_english_language has sufficient knowledge of the English language
- Boolean citizenship__has_sufficient_knowledge_of_the_responsibilities_and_privileges_attaching_to_nz_citizenship has sufficient knowledge of the responsibilities and privileges attaching to New Zealand citizenship
- Boolean citizenship__intends_crown_service intends to enter into or continue in Crown service under the New Zealand Government
- Boolean citizenship__intends_international_service intends to enter into or continue service under an international organisation of which the New Zealand Government is a member
- Boolean citizenship__intends_nz_employment intends to enter into or continue service in the employment of a person, company, society, or other body of persons resident or established in New Zealand
- Boolean citizenship__intends_to_reside_in_nz intends to continue to reside in New Zealand
- Boolean citizenship__is_of_good_character is of good character
- Boolean citizenship__meets_minimum_presence_requirements meets the two presence in NZ requirements within the Citizenship Act
- Boolean citizenship__meets_5_year_presence_requirement was present in New Zealand for a minimum of 1,350 days during the 5 years immediately preceding the date of the application
- Int days_present_in_new_zealand_in_preceeding_5_years
- Int was_present_in_nz_and_entitled_to_indefinite_stay was present in New Zealand and entitled to indefinite stay
- Boolean immigration__entitled_to_indefinite_stay is entitled in terms of the Immigration Act 2009 to be in New Zealand indefinitely
- Boolean present_in_new_zealand was present in New Zealand on this day
- Boolean citizenship__meets_each_year_minimum_presence_requirements was present in New Zealand for at least 240 days in each the 5 years immediately preceding the date of application
- Int days_present_in_new_zealand_in_preceeding_year was present in New Zealand this many days in the last (rolling) year
- Int was_present_in_nz_and_entitled_to_indefinite_stay was present in New Zealand and entitled to indefinite stay
- Boolean immigration__entitled_to_indefinite_stay is entitled in terms of the Immigration Act 2009 to be in New Zealand indefinitely
- Boolean present_in_new_zealand was present in New Zealand on this day
- Boolean is_of_full_capacity is of full capacity (a person shall be deemed to be of full capacity if he is not of unsound mind)
Formulas
This is the formula used to calculate the value of citizenship__citizenship_by_grant_may_be_authorized
2005-04-20
This formula is used for scenarios from the date 2005-04-20 onwards. More info on formulas
def formula_2005_04_20(persons, period, parameters):
return (persons('age', period) >= parameters(period).citizenship.by_grant.minimum_age_threshold) * \
persons('is_of_full_capacity', period) * \
persons('citizenship__meets_minimum_presence_requirements', period) * \
persons('citizenship__is_of_good_character', period) * \
persons('citizenship__has_sufficient_knowledge_of_the_responsibilities_and_privileges_attaching_to_nz_citizenship', period) * \
persons('citizenship__has_sufficient_knowledge_of_the_english_language', period) * \
(persons('citizenship__intends_to_reside_in_nz', period) + persons('citizenship__intends_crown_service', period)
+ persons('citizenship__intends_international_service', period) + persons('citizenship__intends_nz_employment', period))