{ "$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." } } }