Webex · Schema

WifiAudioCodecPriorityObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

webex-wifiaudiocodecpriorityobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WifiAudioCodecPriorityObject",
  "title": "WifiAudioCodecPriorityObject",
  "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 WiFi object."
    },
    "primary": {
      "type": "string",
      "example": "OPUS",
      "description": "Indicates the primary Audio Codec for an WiFi object."
    },
    "secondary": {
      "type": "string",
      "example": "G722",
      "description": "Indicates the secondary Audio Codec for an WiFi object."
    },
    "tertiary": {
      "type": "string",
      "example": "G711u",
      "description": "Indicates the tertiary Audio Codec for an WiFi object."
    }
  }
}