Webex · Schema

AnnouncementAudioFile

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the Announcement file.
name string Name of the announcement file. `name`, `mediaFileType`, `level` are mandatory if `id` is not provided for uploading an announcement.
mediaFileType string Media file type of announcement file.
level string The level at which this announcement exists.
View JSON Schema on GitHub

JSON Schema

webex-announcementaudiofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnnouncementAudioFile",
  "title": "AnnouncementAudioFile",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0FOTk9VTkNFTUVOVC8zMjAxNjRmNC1lNWEzLTQxZmYtYTMyNi02N2MwOThlNDFkMWQ",
      "description": "Unique identifier of the Announcement file."
    },
    "name": {
      "type": "string",
      "example": "Public_Announcement.wav",
      "description": "Name of the announcement file. `name`, `mediaFileType`, `level` are mandatory if `id` is not provided for uploading an announcement."
    },
    "mediaFileType": {
      "type": "string",
      "example": "WAV",
      "description": "Media file type of announcement file."
    },
    "level": {
      "type": "string",
      "enum": [
        "LOCATION",
        "ORGANIZATION",
        "ENTITY"
      ],
      "description": "The level at which this announcement exists."
    }
  }
}