Webex · Schema

PlaylistObject

Basic playlist metadata available for announcement selection.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the playlist.
name string Unique name for the playlist.
View JSON Schema on GitHub

JSON Schema

webex-playlistobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlaylistObject",
  "title": "PlaylistObject",
  "type": "object",
  "description": "Basic playlist metadata available for announcement selection.",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0FOTk9VTkNFTUVOVC9iYzZjOTYwYi01ZDJjLTRiM2QtYjRlZC0wNWY1ZmFhMTJjZjA",
      "description": "A unique identifier for the playlist."
    },
    "name": {
      "type": "string",
      "example": "testingAnnouncementPlaylist",
      "description": "Unique name for the playlist."
    }
  }
}