Hacker News new | ask | show | jobs
by davibu 1485 days ago
Many data set are stored like that (Json separated by RC):

{"name":"name1", "phone":"+769989823"}

{"name":"name2", "phone":"+769244563"}

{"name":"name3", "phone":"+769989295"}

...

There should be a way to do the same thing with concise.

1 comments

Not Concise, but CBOR does have a proposal for such data [1]. This is implemented via CBOR's tagging system where you can attach a tag to otherwise mundane data to hint otherwise, which is in my opinion one of the biggest idea behind CBOR and why CBOR is not really a ripoff of MessagePack.

[1] https://github.com/kriszyp/cbor-records