Webex · Schema

PrePostMeetingBreakoutSessionObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for breakout session.
name string Name for breakout session.
invitees array Invitees for breakout session. Only applies to breakout sessions which are created when meeting is scheduled.
startTime string The time the breakout session was started. Only applies to breakout sessions of ended meeting instances.
endTime string The time the breakout session was ended. Only applies to breakout sessions of ended meeting instances.
View JSON Schema on GitHub

JSON Schema

webex-prepostmeetingbreakoutsessionobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PrePostMeetingBreakoutSessionObject",
  "title": "PrePostMeetingBreakoutSessionObject",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "18d2e565770c4eee918784ee333510ec",
      "description": "Unique identifier for breakout session."
    },
    "name": {
      "type": "string",
      "example": "Breakout Session Name",
      "description": "Name for breakout session."
    },
    "invitees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Invitees for breakout session. Only applies to breakout sessions which are created when meeting is scheduled."
    },
    "startTime": {
      "type": "string",
      "example": "2022-10-25T09:10:00Z",
      "description": "The time the breakout session was started. Only applies to breakout sessions of ended meeting instances."
    },
    "endTime": {
      "type": "string",
      "example": "2022-10-25T09:20:00Z",
      "description": "The time the breakout session was ended. Only applies to breakout sessions of ended meeting instances."
    }
  }
}