I have data in a table that looks something like this:
Col1, DataColumn
0 , 1
16 , 42
0 , 9
The most obvious JSON representation seems to be a list of associative arrays, but the JSON text would have Col1
and DataColumn
repeated in it a lot.
Is there a JSON-standard way to store this without repeating the headers? My thought so far is to store it all as a list of lists and just know that the first row is names and the rest is data.