{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InterceptOutGoingPatch", "title": "InterceptOutGoingPatch", "type": "object", "properties": { "type": { "type": "string", "enum": [ "INTERCEPT_ALL", "ALLOW_LOCAL_ONLY" ], "description": "All outgoing calls are intercepted.\n * `INTERCEPT_ALL` - Outgoing calls are intercepted.\n * `ALLOW_LOCAL_ONLY` - Only non-local calls are intercepted.\n" }, "transferEnabled": { "type": "boolean", "example": true, "description": "If `true`, allows transfer and forwarding for the call type." }, "destination": { "type": "string", "example": "+12225551212", "description": "Number to which the outbound call be transferred." } } }