| Description |
The JSON Lines text format, also called newline-delimited JSON. JSON Lines is used to store structured data that may be processed one record at a time, and is also a flexible format for passing messages between cooperating processes. It works well with unix-style text processing tools, shell pipelines and log files.
There are three requirements to JSONL:
UTF-8 Encoding
Each Line is a Valid JSON Value
Line Separator is '\n' |