API endpoints for encoding and decoding TOON format.
Convert JSON to TOON format
{
"data": { "users": [{"id": 1, "name": "Alice"}] },
"options": {
"delimiter": ",",
"indent": 2,
"keyFolding": "off"
}
}
Convert TOON to JSON
{
"toon": "users[1]{id,name}:\n 1,Alice",
"options": {
"strict": true,
"expandPaths": "off"
}
}