Webex · Schema

MultipleInteractionsRecording

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
taskId string The ID of the task.
recording array
transcription array
View JSON Schema on GitHub

JSON Schema

webex-multipleinteractionsrecording-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MultipleInteractionsRecording",
  "title": "MultipleInteractionsRecording",
  "required": [
    "recording",
    "transcription"
  ],
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "The ID of the task.",
      "format": "uuid",
      "example": "e890a591-63f0-4984-a8f2-00e631368fb4"
    },
    "recording": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RecordingMulti"
      }
    },
    "transcription": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TranscriptMulti"
      }
    }
  }
}