Webex · Schema

AudioCodecPriorityObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
selection object Indicates the selection of an Audio Codec Priority Object.
primary string Indicates the primary Audio Codec.
secondary string Indicates the secondary Audio Codec.
tertiary string Indicates the tertiary Audio Codec.
View JSON Schema on GitHub

JSON Schema

webex-audiocodecpriorityobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AudioCodecPriorityObject",
  "title": "AudioCodecPriorityObject",
  "type": "object",
  "required": [
    "selection",
    "primary",
    "secondary",
    "tertiary"
  ],
  "properties": {
    "selection": {
      "$ref": "#/components/schemas/SelectionType",
      "description": "Indicates the selection of an Audio Codec Priority Object."
    },
    "primary": {
      "type": "string",
      "example": "G711a",
      "description": "Indicates the primary Audio Codec."
    },
    "secondary": {
      "type": "string",
      "example": "G711u",
      "description": "Indicates the secondary Audio Codec."
    },
    "tertiary": {
      "type": "string",
      "example": "G729a",
      "description": "Indicates the tertiary Audio Codec."
    }
  }
}