{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OperatingModeCallForwarding", "title": "OperatingModeCallForwarding", "type": "object", "required": [ "enabled", "destination", "destinationVoicemailEnabled" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "Call forwarding is enabled, or disabled. `False` if the flag is not set." }, "destination": { "type": "string", "example": "+19705550006", "description": "The destination for forwarding." }, "destinationVoicemailEnabled": { "type": "boolean", "description": "The destination voicemail enabled. `False` if the flag is not set." } } }