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": 1, "name": "Chris", "address": { "city": "Washington", "street": "1745 T Street Southeast" } }, { "id": 2, "name": "Emily", "address": { "city": "Louisville", "street": "6007 Applegate Lane" } }, { "id": 3, "name": "Joe", "address": { "city": "Grass Valley", "street": "560 Penstock Drive" } }, { "id": 4, "name": "Kevin", "address": { "city": "Manchester", "street": "150 Carter Street" } }, { "id": 5, "name": "Michelle", "address": { "city": "Louisville", "street": "2721 Lindsay Avenue" } } ], "address": { "city": "New York", "street": "1st Ave" } }
Tabular-JSON
Output as table:
Always (default)
When no nested tables
When no nested arrays
When homogeneous
When no long string values
Trailing commas
Beautify
Minify
{ "name": "rob", "hobbies": [ "swimming", "biking", ], "friends": --- "id", "name", "address"."city", "address"."street" 1, "Chris", "Washington", "1745 T Street Southeast" 2, "Emily", "Louisville", "6007 Applegate Lane" 3, "Joe", "Grass Valley", "560 Penstock Drive" 4, "Kevin", "Manchester", "150 Carter Street" 5, "Michelle", "Louisville", "2721 Lindsay Avenue" ---, "address": { "city": "New York", "street": "1st Ave", }, }