ason 2.1.2

ASON is a data serialization format that evolved from JSON, featuring strong numeric typing and native support for enumeration types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    id:123
    name:"hello"
    orders: [
        (1, "foo", true)
        (2, "bar", false)
    ]
    group: {
        active: true
        permissions:[
            {number: 11, title: "read"}
            {number: 13, title: "write"}
        ]
    }
}