Webex · Schema

MeetingRecordingArchivePollRespondent

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
correlationId number An internal ID that is associated with the respondent's each join.
displayName string Display name for the poll respondent.
email string Email address for the poll respondent.
answers array An array of answers to the question.
View JSON Schema on GitHub

JSON Schema

webex-meetingrecordingarchivepollrespondent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingRecordingArchivePollRespondent",
  "title": "MeetingRecordingArchivePollRespondent",
  "type": "object",
  "properties": {
    "correlationId": {
      "type": "number",
      "example": 28208023,
      "description": "An internal ID that is associated with the respondent's each join."
    },
    "displayName": {
      "type": "string",
      "example": "Alex Green",
      "description": "Display name for the poll respondent."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for the poll respondent."
    },
    "answers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "An array of answers to the question."
    }
  }
}