Webex · Schema

MeetingRecordingArchiveQAAnswer

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
responseMode string The answer's response mode.
displayName string The name of the person who answered the question.
correlationId number An internal ID that is associated with the answer's each join.
email string The email of the person who answered the question.
answerTime string The date and time the question answered in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) compliant format.
text string The text of the answer.
View JSON Schema on GitHub

JSON Schema

webex-meetingrecordingarchiveqaanswer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingRecordingArchiveQAAnswer",
  "title": "MeetingRecordingArchiveQAAnswer",
  "type": "object",
  "properties": {
    "responseMode": {
      "type": "string",
      "example": "private",
      "description": "The answer's response mode."
    },
    "displayName": {
      "type": "string",
      "example": "John Andersen",
      "description": "The name of the person who answered the question."
    },
    "correlationId": {
      "type": "number",
      "example": 10947662,
      "description": "An internal ID that is associated with the answer's each join."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "The email of the person who answered the question."
    },
    "answerTime": {
      "type": "string",
      "example": "2021-07-06T09:52:34Z",
      "description": "The date and time the question answered in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) compliant format."
    },
    "text": {
      "type": "string",
      "example": "Yes, I am.",
      "description": "The text of the answer."
    }
  }
}