{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallForwardSelectiveCallsFromObject", "title": "CallForwardSelectiveCallsFromObject", "type": "object", "required": [ "selection" ], "properties": { "selection": { "type": "string", "enum": [ "ANY", "CUSTOM" ], "description": "If `CUSTOM`, use `customNumbers` to specify which incoming caller ID values cause this rule to match. `ANY` means any incoming call matches assuming the rule is in effect based on the associated schedules.\n * `ANY` - Rule matches for calls from any number.\n * `CUSTOM` - Rule matches based on the numbers and options in customNumbers.\n" }, "customNumbers": { "$ref": "#/components/schemas/CallForwardSelectiveCallsFromCustomNumbersObject", "description": "Custom rules for matching incoming caller ID information. Mandatory if the selection option is set to `CUSTOM`." } } }