Webex · Schema

MppAudioCodecPriorityObjectDevice

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

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