Webex · Schema

MeetingRecordingArchiveSystemInfo

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
displayName string The name of the person who accessed the meeting archive.
catalogs array The catalogs of system information.
View JSON Schema on GitHub

JSON Schema

webex-meetingrecordingarchivesysteminfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingRecordingArchiveSystemInfo",
  "title": "MeetingRecordingArchiveSystemInfo",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "example": "John Andersen",
      "description": "The name of the person who accessed the meeting archive."
    },
    "catalogs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SystemInfoCatalog"
      },
      "description": "The catalogs of system information."
    }
  }
}