{ "type": "object", "description": "Represents a call engagement in the CRM", "name": "Call", "properties": { "id": { "type": "string", "description": "The unique identifier for the call" }, "properties": { "type": "object", "description": "The call properties" }, "propertiesWithHistory": { "type": "object", "description": "Properties with their change history" }, "createdAt": { "type": "datetime", "description": "When the call was created" }, "updatedAt": { "type": "datetime", "description": "When the call was last updated" }, "archived": { "type": "boolean", "description": "Whether the call is archived" }, "archivedAt": { "type": "datetime", "description": "When the call was archived (if archived)" } }, "required": [ "id", "properties", "createdAt", "updatedAt", "archived" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }