{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallForwardingNoAnswerGet", "title": "CallForwardingNoAnswerGet", "type": "object", "required": [ "enabled", "numberOfRings", "systemMaxNumberOfRings", "destinationVoicemailEnabled" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "\"No Answer\" call forwarding is enabled or disabled." }, "destination": { "type": "string", "example": "+19075552859", "description": "Destination for \"No Answer\" call forwarding." }, "numberOfRings": { "type": "number", "example": 2, "description": "Number of rings before the call will be forwarded if unanswered." }, "systemMaxNumberOfRings": { "type": "number", "example": 20, "description": "System-wide maximum number of rings allowed for `numberOfRings` setting." }, "destinationVoicemailEnabled": { "type": "boolean", "example": true, "description": "Enables and disables sending incoming to destination number's voicemail if the destination is an internal phone number and that number has the voicemail service enabled." } } }