I have 3 JSON files, I read them in as Binary, I convert them to JSON and all I want is to combine all the entries within each file into one output. For the life of me I have tried, but I just can’t figure it out.
The output of Merge will return two items and not a combined one, I have tried code.
The end result example:
JSON from file one:
[
{
“data”: [
{},
{}
]
}
]
JSON from file two:
[
{
“data”: [
{},
{}
]
}
]
result
JSON output:
[
{
“data”: [
{},
{},
{},
{}
]
}
]