{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/webex/refs/heads/main/json-schema/ucm-audio-codec-priority-object-device-schema.json", "title": "AudioCodecPriorityObjectDevice", "description": "AudioCodecPriorityObjectDevice schema from Webex API", "type": "object", "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." } }, "required": [ "selection", "primary", "secondary", "tertiary" ] }