Updates to person related models

This commit is contained in:
Scott Idem
2023-10-31 13:30:00 -04:00
parent 27fc6beec4
commit 74fdea2941
3 changed files with 6 additions and 5 deletions

View File

@@ -51,11 +51,11 @@ class Event_Person_Profile_Base(BaseModel):
professional_title: Optional[str] # Professional title
display_name: Optional[str] # View of display_override. Actual name shown in the directory and other "public" areas
full_name_override: Optional[str] # Actual name shown in the directory and other "public" areas
display_name: Optional[str] # This will be changed to full_name_override to match event_badge, event_presenter, and person. View of display_override. Actual name shown in the directory and other "public" areas
# BEGIN # Auto created name variations
full_name: Optional[str] # title_names given_name middle_name family_name designations
full_name_override: Optional[str] # Actual name shown in the directory and other "public" areas
affiliations: Optional[str] # One or more affiliations with organizations, companies, and other groups

View File

@@ -73,11 +73,11 @@ class Event_Presenter_Base(BaseModel):
professional_title: Optional[str] # Professional title
# title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead.
display_name: Optional[str] # NOTE: This will be changed to full_name_override to match event_badge
display_name: Optional[str] # NOTE: This will be changed to full_name_override to match event_badge, event_person_profile, and person
# BEGIN # Auto created name variations
full_name: Optional[str] # title_names given_name middle_name family_name designations
full_name_override: Optional[str] # # Override full_name; Actual name shown on badge and other "public" areas
full_name_override: Optional[str] # Override full_name; Actual name shown for presenter
# degree: Optional[str] # NOTE: Phasing out! Use *designations* instead.
# degrees: Optional[str] # NOTE: Phasing out! Use *designations* instead.

View File

@@ -61,7 +61,7 @@ class Person_Base(BaseModel):
professional_title: Optional[str] # Professional title
# title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead.
display_name: Optional[str] # Custom what they want for public display
display_name: Optional[str] # NOTE: This will be changed to full_name_override to match event_badge, event_presenter, and event_profile
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.
@@ -73,6 +73,7 @@ class Person_Base(BaseModel):
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
full_name_override: Optional[str] # Override full_name; Actual name shown for person
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