Skip to main content
You can manually map the inputs and outputs of your nodes using the map_input() and map_output() methods. To do this, call map_input() or map_output() in your node and provide the following values: The following example shows how to use map_input() and map_output() to map values for a node:
Python
Nodes use schemas to define the structure of incoming and outgoing data, ensuring consistent validation and predictable behavior. The following parameters describe how schemas and mapping functions control the flow of data through a node. The following example shows how a node applies its schema definitions and mapping parameters to process inputs and generate a structured, validated output.
Python