{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SummaryListByInteractionRequest", "title": "SummaryListByInteractionRequest", "type": "object", "required": [ "orgId", "interactionId", "searchType" ], "properties": { "orgId": { "type": "string", "description": "The unique identifier of the organization to which the summarized interactions belong." }, "interactionId": { "type": "string", "description": "The unique identifier of a specific interaction." }, "searchType": { "type": "string", "enum": [ "INTERACTION" ], "description": "The type of search to be performed." } } }