リフト JSON 、アルゴナウトなどを使用して JSON 構造をディープマージすることは可能ですか?
{
"metrics": [{
"name": "abcde",
"tags": {
"oId": ["pqrs"],
"uuid": ["A123-B234"],
"entityType": ["test"],
"entityName": ["test"]
},
"aggregators": [{
"name": "sum",
"sampling": {
"value": 40,
"unit": "seconds"
}
}]
}],
"cache_time": 0,
"start_relative": {
"value": 8,
"unit": "hours"
}
}
新しい属性 ("instance" : ["PQRSTUW"] ) を "metrics" / "tags" 構造にディープ マージしようとしています。
得た
{
"metrics": [{
"name": "abcde",
"tags": {
"orgId": ["pqrs"],
"vcuuid": ["A123-B234"],
"entityType": ["test"],
"entityName": ["test"],
"instance" : ["PQRSTUW"]
},
"aggregators": [{
"name": "sum",
"sampling": {
"value": 40,
"unit": "seconds"
}
}]
}],
"cache_time": 0,
"start_relative": {
"value": 8,
"unit": "hours"
}
}
これは可能ですか?