Tabular-JSON
JSON with tables
Home
Playground
Specification
Implementations
Select an example:
example1
example2
example3
example4
JSON
Beautify
Smart Beautify
Minify
{ "name": "rob", "hobbies": [ "swimming", "biking" ], "friends": [ { "id": 2, "name": "joe", "address": { "city": "New York", "street": "1st Ave" } }, { "id": 3, "name": "sarah", "address": { "city": "Washington", "street": "18th Street NW" } } ], "address": { "city": "New York", "street": "1st Ave" } }
Tabular-JSON
Trailing commas
Beautify
Minify
{ "name": "rob", "hobbies": [ "swimming", "biking", ], "friends": --- "id", "name", "address"."city", "address"."street" 2, "joe", "New York", "1st Ave" 3, "sarah", "Washington", "18th Street NW" ---, "address": { "city": "New York", "street": "1st Ave", }, }