{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InterceptGet", "title": "InterceptGet", "type": "object", "required": [ "enabled", "incoming", "outgoing" ], "properties": { "enabled": { "type": "boolean", "example": true, "description": "`true` if call intercept is enabled." }, "incoming": { "$ref": "#/components/schemas/InterceptIncomingGet", "description": "Settings related to how incoming calls are handled when the intercept feature is enabled." }, "outgoing": { "$ref": "#/components/schemas/InterceptOutGoingGet", "description": "Settings related to how outgoing calls are handled when the intercept feature is enabled." } } }