Format a compact API response
Compact API responses and logs become easier to scan when nested objects and arrays are indented.
Input
{"user":{"id":123,"name":"Ada"},"active":true}Output
{
"user": {
"id": 123,
"name": "Ada"
},
"active": true
}