Webex · Schema

MeetingRecordingArchivePollAnswerSummary

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
totalRespondents number The total number of people who selected this answer.
isCorrect boolean Whether the answer is correct.
text string The text of the answer.
voteUsers array The voters among users.
View JSON Schema on GitHub

JSON Schema

webex-meetingrecordingarchivepollanswersummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingRecordingArchivePollAnswerSummary",
  "title": "MeetingRecordingArchivePollAnswerSummary",
  "type": "object",
  "properties": {
    "totalRespondents": {
      "type": "number",
      "example": 10,
      "description": "The total number of people who selected this answer."
    },
    "isCorrect": {
      "type": "boolean",
      "example": true,
      "description": "Whether the answer is correct."
    },
    "text": {
      "type": "string",
      "example": "Yes, I do.",
      "description": "The text of the answer."
    },
    "voteUsers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MeetingRecordingArchiveUser"
      },
      "description": "The voters among users."
    }
  }
}