Pretty Printing JSONB Rows
> select '{"what": "is this", "nested": {"items 1": "are the best", "items 2": [1, 2, 3]}}'::jsonb;
jsonb
----------------------------------------------------------------------------------
{"what": "is this", "nested": {"items 1": "are the best", "items 2": [1, 2, 3]}}
(1 row)> select jsonb_pretty('{"what": "is this", "nested": {"items 1": "are the best", "items 2": [1, 2, 3]}}'::jsonb);
jsonb_pretty
------------------------------------
{ +
"what": "is this", +
"nested": { +
"items 1": "are the best",+
"items 2": [ +
1, +
2, +
3 +
] +
} +
}
(1 row)Last updated