{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetCallForwardSelectiveSettingObject", "title": "GetCallForwardSelectiveSettingObject", "type": "object", "required": [ "enabled", "ringReminderEnabled", "sendToVoicemailEnabled" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "`Busy` call forwarding is enabled or disabled." }, "destination": { "type": "string", "example": "+19705550006", "description": "Destination for `Busy` call forwarding." }, "ringReminderEnabled": { "type": "boolean", "description": "If `true`, a brief tone will be played on the person's phone when a call has been forwarded." }, "sendToVoicemailEnabled": { "type": "boolean", "description": "Indicates enabled or disabled state of sending incoming calls to voicemail when the destination is an internal phone number and that number has the voicemail service enabled." } } }