TWAZI

Merge Inputs

Combines multiple input sources into a single unified output structure.

Inputs

  • Inputs required: Array of input objects to merge
  • Merge Strategy required: How to handle conflicts ("override", "concat", "deepMerge")
  • Include Keys: Specific keys to include in merged result
  • Exclude Keys: Keys to exclude from merged result

Example

{
  "Inputs": [
    {
      "price": 100,
      "metadata": {
        "source": "binance"
      }
    },
    {
      "volume": 5000,
      "metadata": {
        "source": "coinbase"
      }
    }
  ],
  "Merge Strategy": "deepMerge",
  "Include Keys": ["price", "volume", "metadata"],
  "Exclude Keys": []
}

Outputs

  • Merged Data: Combined data structure
  • Merge Report: Details about the merge operation
Merge inputs workflow example

On this page

Edit on GitHub