The rational of JSON is to propose a trade off between human readable (view and modify in a text editor) and machine processable (easy parser, basic typing, reasonably fast).
JCOF makes a very small progress to the right (more clever encoding) but a huge regression on the left (unreadable).
Here the use case seems very tabular data oriented. There are text format like TSV/CSV for that.
If the point is to reduce the overhead of JSON when encoding tabular data, it can be done as below:
The rational of JSON is to propose a trade off between human readable (view and modify in a text editor) and machine processable (easy parser, basic typing, reasonably fast).
JCOF makes a very small progress to the right (more clever encoding) but a huge regression on the left (unreadable).
Here the use case seems very tabular data oriented. There are text format like TSV/CSV for that.
If the point is to reduce the overhead of JSON when encoding tabular data, it can be done as below:
Thanks for the experimentation, data encoding is always interesting