{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallForwardSelectiveForwardToObject", "title": "CallForwardSelectiveForwardToObject", "type": "object", "required": [ "selection" ], "properties": { "phoneNumber": { "type": "string", "example": "+19705550028", "description": "Phone number used if selection is `FORWARD_TO_SPECIFIED_NUMBER`." }, "selection": { "type": "string", "enum": [ "FORWARD_TO_DEFAULT_NUMBER", "FORWARD_TO_SPECIFIED_NUMBER", "DO_NOT_FORWARD" ], "description": "Controls what happens when the rule matches.\n * `FORWARD_TO_DEFAULT_NUMBER` - When the rule matches, forward to the destination for the auto attendant.\n * `FORWARD_TO_SPECIFIED_NUMBER` - When the rule matches, forward to the destination for this rule.\n * `DO_NOT_FORWARD` - When the rule matches, do not forward to another number.\n" } } }