Webex · Schema

PreMeetingBreakoutSessionWithoutIdObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name for breakout session.
invitees array Invitees for breakout session. Please note that one invitee cannot be assigned to more than one breakout session.
View JSON Schema on GitHub

JSON Schema

webex-premeetingbreakoutsessionwithoutidobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PreMeetingBreakoutSessionWithoutIdObject",
  "title": "PreMeetingBreakoutSessionWithoutIdObject",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Breakout Session Name",
      "description": "Name for breakout session."
    },
    "invitees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Invitees for breakout session. Please note that one invitee cannot be assigned to more than one breakout session."
    }
  }
}