{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallTranscriptsResponse", "title": "CallTranscriptsResponse", "type": "object", "properties": { "requestId": { "type": "string", "description": "A unique identifier for the request." }, "records": { "type": "object", "properties": { "totalRecords": { "type": "integer" }, "currentPageSize": { "type": "integer" }, "cursor": { "type": "string" } } }, "callTranscripts": { "type": "array", "items": { "$ref": "#/components/schemas/CallTranscript" }, "description": "List of call transcripts." } } }