{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SentimentAnalysisDTO", "title": "SentimentAnalysisDTO", "type": "object", "description": "This is applicable/available when either AI Assistant/AI Quality Management add-on offer/license is added to the organization.", "properties": { "enable": { "type": "boolean", "description": "Used to toggle the state of the Sentiment Analysis configuration from active to inactive and vice-versa. Mandatory for create/update operation. If the value is missing in response, the consumer should assume a value as false.", "example": true }, "queuesInclusionType": { "type": "string", "description": "Provides information whether all or specific queues are selected for Sentiment Analysis. If the value is missing in response, the consumer should assume a value as ALL.", "enum": [ "ALL", "SPECIFIC" ], "example": "ALL" } }, "required": [ "enable" ] }