Live data from Hacker News

TSON – A JSON superset with immutable, hash-pinned schemas

tson.io

1–10 of 68 posts

Re: TSON – A JSON superset with immutable, hash-pinned schemas

#6
Seems like it draws a lot of inspiration from EDN. Tagged literals, commas-as-whitespace (and optional), and anything-can-be-a-key are features I sorely miss when I have to go back to JSON.

Don't know how I feel about optional quotes around strings, that seems like a mistake. And having an immutable set literal would be nice as well.

Re: TSON – A JSON superset with immutable, hash-pinned schemas

#10

why can't you use hash pinned schemas with existing json? Why do you need a new format for it?

Here's some json: [] How do you add schema info to that?

Like this:

    {
        'schema': 'c3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714caef0c4f2',
        'data': []
    }
Post reply on HN