{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DoNotDisturbGet", "title": "DoNotDisturbGet", "type": "object", "description": "Do Not Disturb settings response object containing DND configuration for the user.", "properties": { "enabled": { "type": "boolean", "description": "Indicates if Do Not Disturb is enabled." }, "ringSplashEnabled": { "type": "boolean", "description": "Indicates if ring splash is enabled while DND is active." }, "webexGoOverrideEnabled": { "type": "boolean", "description": "Indicates if Webex Go override is enabled while DND is active." } }, "example": { "enabled": true, "ringSplashEnabled": false, "webexGoOverrideEnabled": false } }