Persons
Description of your new file.
A list of persons mentioned in the conversation with the following properties:
- full_name (str): The full name of the human person
- first_name (str): The first name of the human person
- middle_name (str): The middle name of the human person
- last_name (str): The last name of the human person
- nickname (str): The nickname of the person
- person_extra (PersonExtra): Extra information about the person
results
PersonExtra
- email_address (str): The email address
- gender (Gender): The gender of the person assigned at birth
- origins (List[str]): The origin of the person
- attributes (List[str]): The attributes of the person
- other_attributes (List[OtherAttributes]): The other attributes of the person
- keywords (List[str]): The keywords associated with the person
- marital_status (MaritalStatus): The marital status of the person
- occupation (Occupation): The occupation of the person
- education_level (EducationLevel): The education level of the person
- skills (List[Skill]): The skills of the person
- medical_profession (MedicalProfession): The medical profession of the person
- employer (str): The employer of the person
- religion (Religion): The religion of the person
- phone_number (str): The phone number of the person
- political_affiliation (PoliticalAffiliation): The political affiliation of the person
- passport_number (str): The passport number of the person
- username (str): The username of the person
- password (str): The password of the person
- ip_address (str): The IP address of the person
- social_security_number (str): The social security number of the person
- drivers_license_number (str): The driver’s license number of the person
- languages (List[str]): The languages spoken by the person
- zodiac_sign (ZodiacSign): The zodiac sign of the person
- age (Age): The age of the associated person
- age_in_years (int): The age of the associated person in years
- age_in_months (int): The age of the associated person in months
results
Age
- age_number (int): The age of the person in years
- age_unit (str): The unit of the age. Could be years, months, days, etc.
result
Gender (Enum)
- MALE
- FEMALE
MedicalProfession (Enum)
- PHYSICIAN
- SURGEON
- DENTIST
- NURSE
- OPTOMETRIST
- PHARMACIST
- PSYCHOLOGIST
- DIETITIAN
- VETERINARIAN
- PHYSIOTHERAPIST
- ASSISTANT_PHYSICIAN
- RADIOLOGIST
- MEDICAL_LABORATORY_SCIENTIST
- OTHER
Religion (Enum)
- CHRISTIANITY
- ISLAM
- HINDUISM
- BUDDHISM
- JUDAISM
- SIKHISM
- SHINTO
- BAHAISM
- JAINISM
- ZOROASTRIANISM
- TAOISM
- SHAMANISM
- PAGANISM
- OTHER
ZodiacSign (Enum)
- ARIES
- TAURUS
- GEMINI
- CANCER
- LEO
- VIRGO
- LIBRA
- SCORPIO
- SAGITTARIUS
- CAPRICORN
- AQUARIUS
- PISCES
MaritalStatus (Enum)
- SINGLE
- MARRIED
- WIDOWED
- DIVORCED
Occupation (Enum)
- EMPLOYED
- UNEMPLOYED
- STUDENT
- RETIRED
- HOMEMAKER
- SELF_EMPLOYED
- FREELANCER
- ENTREPRENEUR
- OTHER
EducationLevel (Enum)
- PRIMARY
- SECONDARY
- BACHELOR
- MASTER
- DOCTORATE
- OTHER
PoliticalAffiliation (Enum)
- DEMOCRAT
- REPUBLICAN
- LIBERTARIAN
- GREEN
- INDEPENDENT
- OTHER
OtherAttributes
A list of other attributes mentioned in the conversation with the following properties:
- attribute_name (str): The name of the attribute
- attribute_value (str): The value of the attribute
- speaker (str): The speaker mentioning the attribute
- subject (str): The subject to whom the attribute applies
result
Skill
A list of skills mentioned in the conversation with the following properties:
- skill_name (str): The name of the skill
- skill_level (SkillLevel): The level of the skill
result
SkillLevel (Enum)
- BEGINNER
- INTERMEDIATE
- ADVANCED
- EXPERT
Was this page helpful?