JSON merge from input and output json

Hi,
Need help! I have a response in json format. That json needs to parse and detail from their needs to aggregated and output will be like merge JSON.
Example: Here text1 is available twice in the input JSON but it needs to merged to get both values.
Input
{
“sample1”: {
“text1”: “abc”
“value1”: “234”
}
“sample2”: {
“text1”: “abc”
“value1”:“234”
}
}

Output:
{ “result”:
[
{
“text1”: “abc”
“value1”:“234”
},
{
“text1”: “abc”
“value1”:“234”
}
]
}

Hi @yellowtulip10,

This is the community forum of JSON Forms, a rendering engine for JSON Schema based forms. Your problem seems to be unrelated. I would like to suggest to contact the person you got your task from. Good luck!