PrettyJSONEachRow
| Input | Output | Alias | 
|---|---|---|
| ✗ | ✔ | PrettyJSONLines,PrettyNDJSON | 
Description
Differs from JSONEachRow only in that JSON is pretty formatted with new line delimiters and 4 space indents.
Example Usage
{
    "num": "42",
    "str": "hello",
    "arr": [
        "0",
        "1"
    ],
    "tuple": {
        "num": 42,
        "str": "world"
    }
}
{
    "num": "43",
    "str": "hello",
    "arr": [
        "0",
        "1",
        "2"
    ],
    "tuple": {
        "num": 43,
        "str": "world"
    }
}