{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallNotifyGet", "title": "CallNotifyGet", "type": "object", "description": "User call notify settings response object containing configurations of Criteria and whether CallNotify is enabled.", "example": { "enabled": false, "emailAddress": "callnotify@example.com", "criteria": [ { "id": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzU0MzgzODQzNTA5NzY", "scheduleName": "CustomHoliday(Group)", "source": "ALL_NUMBERS", "notificationEnabled": false } ] }, "properties": { "enabled": { "type": "boolean", "description": "Indicates whether the call notify feature is enabled for the user." }, "emailAddress": { "type": "string", "description": "Email Address to which call notifications to be received." }, "criteria": { "type": "array", "description": "List of Call Notify Criteria configured by the user.", "items": { "$ref": "#/components/schemas/CallNotifyCriteriaListGet" } } } }