{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExecutivePut", "title": "ExecutivePut", "type": "object", "description": "Details of an executive for whom the assistant can manage calls.", "example": { "personId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8zZWQzNDg0MS0yZTkwLTQ4OGEtYmVmZi1iNTk0OTA1ODFkNWM", "optInEnabled": true }, "required": [ "personId", "optInEnabled" ], "properties": { "personId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8zZWQzNDg0MS0yZTkwLTQ4OGEtYmVmZi1iNTk0OTA1ODFkNWM", "description": "Unique identifier of the executive." }, "optInEnabled": { "type": "boolean", "example": true, "description": "If `true`, the assistant has opted in to handle calls for the executive." } } }