{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserOutgoingPermissionGet", "title": "UserOutgoingPermissionGet", "type": "object", "required": [ "useCustomPermissions", "callingPermissions" ], "properties": { "useCustomEnabled": { "type": "boolean", "example": true, "description": "When `true`, indicates that this workspace uses the shared control that applies to all outgoing call settings categories when placing outbound calls." }, "useCustomPermissions": { "type": "boolean", "example": true, "description": "When `true`, indicates that this workspace uses the specified outgoing calling permissions when placing outbound calls." }, "callingPermissions": { "type": "array", "items": { "$ref": "#/components/schemas/CallingPermission" }, "description": "Workspace's list of outgoing permissions." } } }