Hello!
I would to split a nested json array into different unique json document.
For example, I have this document
{
"beginTimeSeconds": 1655886958,
"endTimeSeconds": 1655887018,
"area": "Factory",
"product": [
"aaaaa7e5a709a7e5",
"bbbbb7c2a1f635c2",
"ccccc422f9e47618"
]
}
and I would have this :
{
"beginTimeSeconds": 1655886958,
"endTimeSeconds": 1655887018,
"area": "Factory",
"product": "aaaaa7e5a709a7e5"
},
{
"beginTimeSeconds": 1655886958,
"endTimeSeconds": 1655887018,
"area": "Factory",
"product": "bbbbb7c2a1f635c2"
},
{
"beginTimeSeconds": 1655886958,
"endTimeSeconds": 1655887018,
"area": "Factory",
"product": "ccccc422f9e47618"
}
Can someone help me?