{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallForwardingAlwaysGet", "title": "CallForwardingAlwaysGet", "type": "object", "required": [ "enabled", "ringReminderEnabled", "destinationVoicemailEnabled" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "\"Always\" call forwarding is enabled or disabled." }, "destination": { "type": "string", "example": "2225551212", "description": "Destination for \"Always\" 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." }, "destinationVoicemailEnabled": { "type": "boolean", "description": "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." } } }