@youngstrommj Can you please try this? YOUR_SEARCH
| eval object2_keys = json_array_to_mv(json_keys(object2),false())
| eval object3=object1
| foreach mode=multivalue object2_keys
[| eval object3=json_set(object3,<<ITEM>>,json_extract(object2,<<ITEM>>))
]
| table object1 object2 object3 My Sample Search : | makeresults
| eval object1=json_object("somekey","value")
| eval object2=json_object("someOtherKey","value","aaa","bbb")
| eval object2_keys = json_array_to_mv(json_keys(object2),false())
| eval object3=object1
| foreach mode=multivalue object2_keys
[| eval object3=json_set(object3,<<ITEM>>,json_extract(object2,<<ITEM>>))
]
| table object1 object2 object3 I hope this will help you. Thanks KV If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.
... View more