{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.ilert.com/schemas/CallFlowBranch", "title": "CallFlowBranch", "type": "object", "required": [ "branchType" ], "properties": { "id": { "type": "integer", "format": "int64" }, "branchType": { "type": "string", "enum": [ "BRANCH", "CATCH_ALL", "ANSWERED" ] }, "condition": { "type": "string" }, "target": { "$ref": "#/components/schemas/CallFlowNode" } } }