Wires
Wires connect steps and specify the flow of information between them. They have four key properties:
Field | Type | JSON Key | Description |
---|---|---|---|
SourceName | string | source_name | Origin step of the wire |
TargetName | string | target_name | Destination step of the wire |
SourceDataPath | string | source_data_path | Path to data in the source step (using JSONPath) |
TargetDataPath | string | target_data_path | Path to input location in the target step (using JSONPath) |
Wires are directional, flowing from source to target. The names correspond to those specified in the steps.
Wires use JSONPath to precisely control data flow, allowing for powerful data manipulation:
- source_data_path: Specifies the data to be transferred from the source step
- target_data_path: Defines where the data should be placed in the target step's input schema
JSONPath is a widely adopted method for retrieving data from JSON objects, enabling flexible and precise data routing between steps.