JSONL Converter
Convert between JSON and JSONL (JSON Lines) formats. JSONL is a convenient format for storing structured data that may be processed one record at a time.
About JSONL Format:
- Each line must be a valid JSON value (typically objects or arrays)
- UTF-8 encoding is required
- Lines are separated by '\n' (or '\r\n')
- Perfect for log files and data streaming
- Better than CSV for handling nested data structures