iI want to transform a json formatedJSON formatted output to another. How iI can do this ?
Example: Old jsonJSON
"data": [ { "id" : "e49e183e-9325-4e62-8eda-7e63fb7cdbbd", "name" : "test" }, { "id" : "ac310894-d808-447b-a189-d07edb7f6dd7", "name" : "test2" } ] New JsonJSON which iI want without braces only like this with bracket
"aaData": [ [ "e49e183e-9325-4e62-8eda-7e63fb7cdbbd","test" ], [ "ac310894-d808-447b-a189-d07edb7f6dd7","test2" ] ]