{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrgCallNotificationObject", "title": "OrgCallNotificationObject", "type": "object", "properties": { "emergencyCallNotificationEnabled": { "type": "boolean", "example": true, "description": "When true sends an email to the specified email address when a call is made to emergency services." }, "allowEmailNotificationAllLocationEnabled": { "type": "boolean", "example": true, "description": "Send an emergency call notification email for all locations." }, "emailAddress": { "type": "string", "example": "callback@gmail.com", "description": "When `emergencyCallNotificationEnabled` is true, the emergency notification email is sent to the specified email address." } } }