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