Person Object Model
Key: person
The Person Object Model within the profileAPI system is meticulously crafted to provide comprehensive insights into individual profiles. This model captures crucial data about employees, including both personal and professional details, to enrich understanding of their roles and contributions within the organization.
Fields Description
Here is the detailed description of each field within the Person Object Model using the standard Data Types
specified earlier:
Field | Type | Description | Example |
---|---|---|---|
id | id | Person unique identifier | "9e6a55b258ef11edb8780242ac120002" |
name | string | The full legal name of the individual. | "Wissam Tabbara" |
firstName | string | The person's first name. | "Wissam" |
lastName | string | The person's last name. | "Tabbara" |
linkedInUrl | linkedInUrl | Direct URL to the person's LinkedIn profile. | "<https://linkedin.com/in/wissamtabbara>" |
crunchbaseUrl | crunchbaseUrl | Direct URL to the person's Crunchbase profile. | "<https://crunchbase.com/person/wissam-tabbara>" |
photoUrl | Url | Link to a person profile photo. | “https://profileapi.com/images/person-photos/9e6a55b258ef11edb8780242ac120002.jpg” |
title | string | The person’s current title | "Software Engineer" |
department | department | The department within the company where the person is employed. | "Accounting" |
role | role | Defines whether the person is an Individual Contributor or a Manager. | "Manager" |
seniority | string | Describes the level of seniority of the person within the company. | "C-Level+" |
unitedStatesStateCode | unitedStatesStateCode | The U.S. state code where the person is located, if applicable. | "CA" |
countryCode | countryCode | The two-letter ISO country code where the person is located. | "US" |
Example Object
{
"id": "9e6a55b258ef11edb8780242ac120002",
"name": "Wissam Tabbara",
"firstName": "Wissam",
"lastName": "Tabbara",
"linkedInUrl": "<https://linkedin.com/in/wissamtabbara>",
"crunchbaseUrl": "<https://crunchbase.com/person/wissam-tabbara>",
"department": "Administration",
"role": "Manager",
"seniority": "C-Level+",
"unitedStatesStateCode": "CA",
"countryCode": "US",
"responsibilities": ["Secure Funding"],
"topicsOfInterest": ["Social Selling"]
}