Work on a lot of things. Mainly cleaning up person and profile related fields in multiple tables.
This commit is contained in:
@@ -42,22 +42,40 @@ class Person_Base(BaseModel):
|
||||
membership_person_id_random: Optional[str] # Linked from membership_person using the v_person view
|
||||
membership_person_id: Optional[int] # Linked from membership_person using the v_person view
|
||||
|
||||
informal_name: Optional[str]
|
||||
pronouns: Optional[str] # Preferred pronouns
|
||||
informal_name: Optional[str] # Informal or nick name they commonly go by
|
||||
|
||||
title_names: Optional[str] # Title for generation, official position, or professional or academic qualification, other honorific, or other name prefix
|
||||
prefix: Optional[str] # NOTE: Phasing out! Use *title_names* instead.
|
||||
given_name: Optional[str]
|
||||
family_name: Optional[str]
|
||||
middle_name: Optional[str]
|
||||
prefix: Optional[str]
|
||||
suffix: Optional[str]
|
||||
family_name: Optional[str]
|
||||
designations: Optional[str] # Temporary or long-term designations related to family, relationships, person differentiation (Junior/Senior), location, social status, professional qualifications, legal status, or other name suffix
|
||||
designation: Optional[str] # NOTE: Phasing out! Use *designations* instead.
|
||||
suffix: Optional[str] # NOTE: Phasing out! Use *designations* instead.
|
||||
|
||||
full_name: Optional[str] # May be auto created from informal, given, family, etc if not given
|
||||
informal_full_name: Optional[str] # Auto created
|
||||
last_first_name: Optional[str] # Auto created
|
||||
display_name: Optional[str] # Custom whatever they want for public display
|
||||
professional_title: Optional[str] # Professional title
|
||||
title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead.
|
||||
|
||||
title: Optional[str]
|
||||
designation: Optional[str]
|
||||
display_name: Optional[str] # Custom what they want for public display
|
||||
informal_display_name: Optional[str] # Custom what they want for informal public display
|
||||
professional_display_name: Optional[str] # Custom what they want for professional public display. This should include professional title.
|
||||
|
||||
organization_name: Optional[str]
|
||||
preferred_display_name: Optional[str] # '', 'informal', 'professional'
|
||||
|
||||
# BEGIN # Auto created name variations
|
||||
first_last_name: Optional[str] # With SQL view?
|
||||
first_middle_last_name: Optional[str] # With SQL view?
|
||||
last_first_name: Optional[str] # With SQL view?
|
||||
last_first_middle_name: Optional[str] # With SQL view?
|
||||
full_name: Optional[str] # title_names given_name middle_name family_name designations
|
||||
informal_full_name: Optional[str] # informal_name family_name May be auto created from informal, given, family, etc if not given
|
||||
professional_full_name: Optional[str] # title_names given_name middle_name family_name designations professional_title
|
||||
# END # Auto created name variations
|
||||
|
||||
affiliations: Optional[str] # One or more affiliations with organizations, companies, and other groups
|
||||
affiliation: Optional[str] # NOTE: Phasing out! Use *affiliations* instead.
|
||||
organization_name: Optional[str] # NOTE: Phasing out! Use *affiliations* instead.
|
||||
|
||||
tagline: Optional[str]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user