Webex · Schema

PollResult

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the poll.
meetingId string A unique identifier for the [meeting instance](/docs/meetings#meeting-series-scheduled-meetings-and-meeting-instances) to which the poll belongs.
totalAttendees number The total number of attendees in the meeting.
totalRespondents number The total number of respondents in the poll.
startTime string The date and time the poll started in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) compliant format.
endTime string The date and time the poll ended in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) compliant format.
timerDuration number The duration of the poll, in seconds.
displayName string The name of the poll coordinator.
email string The email of the poll coordinator.
personId string The ID of the the poll coordinator.
questions array An array of questions in this poll.
View JSON Schema on GitHub

JSON Schema

webex-pollresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PollResult",
  "title": "PollResult",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "1aea8390-e375-4547-b7ff-58ecd9e0b03d",
      "description": "A unique identifier for the poll."
    },
    "meetingId": {
      "type": "string",
      "example": "a2f95f5073e347489f7611492dbd6ad5_I_199075330905867928",
      "description": "A unique identifier for the [meeting instance](/docs/meetings#meeting-series-scheduled-meetings-and-meeting-instances) to which the poll belongs."
    },
    "totalAttendees": {
      "type": "number",
      "example": 10,
      "description": "The total number of attendees in the meeting."
    },
    "totalRespondents": {
      "type": "number",
      "example": 10,
      "description": "The total number of respondents in the poll."
    },
    "startTime": {
      "type": "string",
      "example": "2021-07-06T09:25:34Z",
      "description": "The date and time the poll started in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) compliant format."
    },
    "endTime": {
      "type": "string",
      "example": "2021-07-06T09:28:34Z",
      "description": "The date and time the poll ended in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) compliant format."
    },
    "timerDuration": {
      "type": "number",
      "example": 300,
      "description": "The duration of the poll, in seconds."
    },
    "displayName": {
      "type": "string",
      "example": "John Andersen",
      "description": "The name of the poll coordinator."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "The email of the poll coordinator."
    },
    "personId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xYTY5MmE2Mi00MTNmLTRjYWEtYjdkOS0wYzg0ZDZmMDdlNzY",
      "description": "The ID of the the poll coordinator."
    },
    "questions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/QuestionResult"
      },
      "description": "An array of questions in this poll."
    }
  }
}