I want to transform a JSON formatted output to another.
How I can do this?

Example:
Old JSON

 "data": 
 [
 {
 	 "id" : "e49e183e-9325-4e62-8eda-7e63fb7cdbbd",
 	 "name" : "test"
 	},
 	{
 	 "id" : "ac310894-d808-447b-a189-d07edb7f6dd7",
 	 "name" : "test2"
 	}
 ]

New JSON which I want without braces only like this with bracket

 "aaData": 
 [ 
 [
 "e49e183e-9325-4e62-8eda-7e63fb7cdbbd","test"
 ],
 [
 "ac310894-d808-447b-a189-d07edb7f6dd7","test2"
 ]
 ]