Webex · Schema

ConferenceParticipant

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
callId string The callId of the call.
muted boolean Indicates if the participant has been muted.
deafened boolean Indicates if the participant has been deafened (i.e. media stream is not being transmitting to the participant)
View JSON Schema on GitHub

JSON Schema

webex-conferenceparticipant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConferenceParticipant",
  "title": "ConferenceParticipant",
  "type": "object",
  "required": [
    "callId",
    "muted",
    "deafened"
  ],
  "properties": {
    "callId": {
      "type": "string",
      "example": "Y2lzY29z...",
      "description": "The callId of the call."
    },
    "muted": {
      "type": "boolean",
      "example": true,
      "description": "Indicates if the participant has been muted."
    },
    "deafened": {
      "type": "boolean",
      "example": true,
      "description": "Indicates if the participant has been deafened (i.e. media stream is not being transmitting to the participant)"
    }
  }
}