I have a jsonarray like below:
[
{
"WarrantyGuarantee":{
"Row Id":"RA048",
"QuestionKey":"WarrantyGuarantee",
"Answer":"Y"
}
},
{
"RewardLoyalty":{
"Row Id":"RA051",
"QuestionKey":"RewardLoyalty",
"Answer":"Y"
}
},
{
"WarrantyGuarantee":{
"Row Id":"RA048",
"QuestionKey":"WarrantyGuarantee",
"Answer":"Y"
}
},
{
"RewardLoyalty":{
"Row Id":"RA051",
"QuestionKey":"RewardLoyalty",
"Answer":"Y"
}
},
{
"MinCost":{
"Row Id":"RA044",
"QuestionKey":"MinCost",
"Answer":"hgf"
}
}
]
I also have multiple json objects:
{
"RA048":"Y",
"RA051":"Y"
}
and
{
"RA049":"Y",
"RA051":"N"
}
I want to merge all my json objects in the jsonarray from the above.