Webex · Schema

PlaylistAssignedLocationResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the playlist.
locations array Array of locations with which the playlist is associated.
View JSON Schema on GitHub

JSON Schema

webex-playlistassignedlocationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlaylistAssignedLocationResponse",
  "title": "PlaylistAssignedLocationResponse",
  "type": "object",
  "required": [
    "id",
    "locations"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0FOTk9VTkNFTUVOVC9iYzZjOTYwYi01ZDJjLTRiM2QtYjRlZC0wNWY1ZmFhMTJjZjA",
      "description": "Unique identifier of the playlist."
    },
    "locations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LocationObject"
      },
      "description": "Array of locations with which the playlist is associated."
    }
  }
}