{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallNotifyPatch", "title": "CallNotifyPatch", "type": "object", "description": "Request body for updating call notify settings.", "properties": { "enabled": { "type": "boolean", "description": "Indicates whether the call notify feature should be enabled or disabled for the user.", "example": false }, "emailAddress": { "type": "string", "description": "Email Address to which call notifications to be received.", "example": "callnotify@example.com" } }, "required": [ "enabled" ] }