{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.ilert.com/schemas/EventFlowNode", "title": "EventFlowNode", "type": "object", "required": [ "nodeType" ], "properties": { "id": { "type": "integer", "format": "int64" }, "name": { "type": "string" }, "nodeType": { "type": "string", "enum": [ "ROOT", "SUPPORT_HOURS", "ROUTE_EVENT", "DEFINE_BRANCHES", "WAIT", "TRANSFORM" ] }, "metadata": { "$ref": "#/components/schemas/EventFlowNodeMetadata" }, "branches": { "type": "array", "items": { "$ref": "#/components/schemas/EventFlowBranch" } } } }