Factset · Schema
profile
Basic information about a person entity.
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| requestId | string | Person identifier used in the request. |
| personId | string | FactSet Entity Identifier for the Person |
| lastName | string | Last Name |
| factsetName | string | Name |
| firstName | string | First Name |
| middleName | string | Middle Name |
| formalName | string | Formal Name |
| properName | string | Proper Name |
| salutation | string | Primary Salutation of Name |
| highestDegree | string | The Highest Held Degree Code. |
| highestDegreeInst | string | The Highest Degree Institution Name. |
| suffix | string | Suffix of Name |
| age | number | Person's age in years. |
| gender | string | Person's Gender. |
| salary | number | Most Recent Salary |
| totalCompensation | number | Most Recent Total Compensation |
| primaryCompanyId | string | Entity identifier of primary `Company` of employment. |
| primaryCompanyName | string | Name of primary company of employment |
| primaryTitle | string | Title at primary `Company` of employment |
| biography | string | Brief biography of the person requested. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "profile",
"type": "object",
"description": "Basic information about a person entity.",
"properties": {
"requestId": {
"type": "string",
"description": "Person identifier used in the request."
},
"personId": {
"type": "string",
"description": "FactSet Entity Identifier for the Person"
},
"lastName": {
"type": "string",
"description": "Last Name"
},
"factsetName": {
"type": "string",
"description": "Name"
},
"firstName": {
"type": "string",
"description": "First Name"
},
"middleName": {
"type": "string",
"description": "Middle Name"
},
"formalName": {
"type": "string",
"description": "Formal Name"
},
"properName": {
"type": "string",
"description": "Proper Name"
},
"salutation": {
"type": "string",
"description": "Primary Salutation of Name"
},
"highestDegree": {
"type": "string",
"description": "The Highest Held Degree Code."
},
"highestDegreeInst": {
"type": "string",
"description": "The Highest Degree Institution Name."
},
"suffix": {
"type": "string",
"description": "Suffix of Name"
},
"age": {
"type": "number",
"description": "Person's age in years."
},
"gender": {
"type": "string",
"description": "Person's Gender."
},
"salary": {
"type": "number",
"description": "Most Recent Salary"
},
"totalCompensation": {
"type": "number",
"description": "Most Recent Total Compensation"
},
"primaryCompanyId": {
"type": "string",
"description": "Entity identifier of primary `Company` of employment."
},
"primaryCompanyName": {
"type": "string",
"description": "Name of primary company of employment"
},
"primaryTitle": {
"type": "string",
"description": "Title at primary `Company` of employment"
},
"biography": {
"type": "string",
"description": "Brief biography of the person requested."
}
}
}