|
|
|
|
|
by _dain_
1284 days ago
|
|
>CSV is superior to JSON for tabular data Can't you just do this? {
"columns": ["col1", "col2", "col3"],
"data": [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]
}
That's valid JSON but it's human-readable and human-editable rows of comma-separated data, just like CSV. |
|