Paste a JSON array, and the tool converts it to JSONL/NDJSON (one object per line) — or paste JSONL to convert it back to an array.
JSONL (also called NDJSON) is newline-delimited JSON — one complete JSON value per line. It is used for streaming, logs, and big-data pipelines.
Yes — when converting JSONL back to an array, every non-empty line is parsed and the exact line number of any failure is reported.
No — any JSON array works. Each element becomes one line, whether it is an object, number, string, or nested array.