{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SummaryListByAgentRequest", "title": "SummaryListByAgentRequest", "type": "object", "required": [ "orgId", "agentCiUserId", "searchType" ], "properties": { "orgId": { "type": "string", "description": "The unique identifier of the organization to which the summarized interactions belong." }, "agentCiUserId": { "type": "string", "description": "The CI (Common Identity) user ID of the agent associated with the summaries." }, "searchType": { "type": "string", "enum": [ "AGENT" ], "description": "The type of search to be performed." } } }