Tables
CSV = Comma Separated Value
CSV is trivial to represent in JSON. Escape content.
{“header”:[“Column1“,…],”body”:[[data,…],…]}
and can transposed as
Columnar Oriented
{“Column1“:[data,…],”Column2“:[data,…]}
CSV is trivial to represent in JSON. Escape content.
{“header”:[“Column1“,…],”body”:[[data,…],…]}
and can transposed as
{“Column1“:[data,…],”Column2“:[data,…]}