{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "companyCompensation", "type": "object", "description": "List of executives and their compensation details for the specified company identifier.", "properties": { "name": { "type": "string", "description": "FactSet Name of the person" }, "personId": { "type": "string", "description": "Factset Entity Identifier for the Person" }, "title": { "type": "string", "description": "The requested Position Title" }, "salary": { "type": "number", "description": "Salary of the person. Expressed in USD and raw units." }, "bonus": { "type": "number", "description": "Bonus of the executive during the fiscal year. Expressed in USD and raw units." }, "stockAwards": { "type": "number", "description": "Stock awards for the person. Expressed in USD and raw units." }, "optionsAwards": { "type": "number", "description": "Option Awards for the person. Expressed in USD and raw units." }, "otherCompensation": { "type": "number", "description": "All the other compensations which are not explicitly defined as salary, bonus, stock awards, or options awards. Expressed in USD and raw units." }, "totalCompensation": { "type": "number", "description": "The sum of all compensation for the requested person as reported by the company. Expressed in USD and raw units." }, "nonEquityIncentivePlanComp": { "type": "number", "description": "All the earnings pursuant to awards under non-equity incentive plans. Expressed in USD and raw units." }, "nonQualifiedCompEarnings": { "type": "number", "description": "All the other nonqualified defined contribution which are not tax qualified and other contributions. Expressed in USD and raw units." }, "compensationYear": { "type": "string", "description": "The most recent year of compensation is expressed as 'YYYY' as opposed to 'YYYY-MM-DD' format." }, "requestId": { "type": "string", "description": "Original identifier used for the request." } } }