AcdObjectDevice schema from Webex API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/webex/refs/heads/main/json-schema/admin-acd-object-device-schema.json", "title": "AcdObjectDevice", "description": "AcdObjectDevice schema from Webex API", "type": "object", "properties": { "enabled": { "type": "boolean", "example": true, "description": "Indicates whether the ACD object is enabled." }, "displayCallqueueAgentSoftkeys": { "$ref": "#/components/schemas/DisplayCallqueueAgentSoftkeysObject", "description": "Indicates the call queue agent soft key value of an ACD object." } }, "required": [ "enabled", "displayCallqueueAgentSoftkeys" ] }