merge_json
Combine two JSON objects into one using a deep or shallow merge strategy. Choose between recursive merging or top-level key assignment.
Instructions
Merge two JSON objects with deep or shallow strategy.
Parameters:
json_a — First JSON string.
json_b — Second JSON string.
strategy — 'deep' (default) or 'shallow'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| json_a | Yes | ||
| json_b | Yes | ||
| strategy | No | deep |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |