Webex · Schema

ConferenceDetails

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
state object The state of the conference.
appearance number The appearance index for the conference leg. Only present when the conference has an appearance value assigned.
created string The conference start time in ISO 8601 format.
muted boolean Indicates if the host of the conference has been muted.
type object The type of conference for a non-standard conference.
participants array The participants in the conference.
View JSON Schema on GitHub

JSON Schema

webex-conferencedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConferenceDetails",
  "title": "ConferenceDetails",
  "type": "object",
  "required": [
    "state",
    "created",
    "muted"
  ],
  "properties": {
    "state": {
      "$ref": "#/components/schemas/ConferenceStateEnum",
      "description": "The state of the conference."
    },
    "appearance": {
      "type": "number",
      "example": 2,
      "description": "The appearance index for the conference leg. Only present when the conference has an appearance value assigned."
    },
    "created": {
      "type": "string",
      "example": "2023-03-02T15:00:00.000Z",
      "description": "The conference start time in ISO 8601 format. "
    },
    "muted": {
      "type": "boolean",
      "description": "Indicates if the host of the conference has been muted."
    },
    "type": {
      "$ref": "#/components/schemas/ConferenceTypeEnum",
      "description": "The type of conference for a non-standard conference."
    },
    "participants": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConferenceParticipant"
      },
      "description": "The participants in the conference."
    }
  }
}