Output
Use this node to return a message from a sub-chain back to the parent rule chain that invoked it via a Rule Chain node. The name you give to the Output node becomes the connection label in the parent chain, so you can define multiple named outputs (e.g., Success, Failure, Valid) to drive different downstream flows.
Configuration
Section titled “Configuration”This node requires no configuration. The node’s name (set when you add it to the rule chain) acts as the connection label used by the parent rule chain.
Message processing algorithm
Section titled “Message processing algorithm”- The node receives a message within the current (sub-)rule chain.
- The message is returned to the parent rule chain that invoked this chain via a Rule Chain node.
- In the parent rule chain the message exits from the Rule Chain node via the connection whose label exactly matches this Output node’s name.
For example:
- An Output node named Success routes messages via the Success connection in the parent chain.
- An Output node named Failure routes messages via the Failure connection in the parent chain.
- An Output node named Valid routes messages via the Valid connection in the parent chain.
Output connections
Section titled “Output connections”This node has no output connections within its own rule chain. It returns messages to the parent rule chain where routing continues based on the Output node’s name as the connection label.
JSON schema
Section titled “JSON schema”{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "EmptyNodeConfiguration", "type": "object", "properties": {}, "additionalProperties": false}