Webex · Schema

MeetingRecordingArchiveParticipant

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
correlationId number An internal ID that is associated with each join.
displayName string Display name for the meeting participant.
joinedTime string The time the participant joined the meeting.
leftTime string The time the participant left the meeting.
email string Email address for the meeting participant.
View JSON Schema on GitHub

JSON Schema

webex-meetingrecordingarchiveparticipant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingRecordingArchiveParticipant",
  "title": "MeetingRecordingArchiveParticipant",
  "type": "object",
  "properties": {
    "correlationId": {
      "type": "number",
      "example": 28208023,
      "description": "An internal ID that is associated with each join."
    },
    "displayName": {
      "type": "string",
      "example": "John Andersen",
      "description": "Display name for the meeting participant."
    },
    "joinedTime": {
      "type": "string",
      "example": "2022-07-20T07:01:31Z",
      "description": "The time the participant joined the meeting."
    },
    "leftTime": {
      "type": "string",
      "example": "2022-07-20T07:01:31Z",
      "description": "The time the participant left the meeting."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for the meeting participant."
    }
  }
}