JSONL — JSON Lines — is the format that log shippers, stream processors and machine-learning pipelines love: every record is a single compact JSON line, appended freely and parsed independently. But converting an existing JSON array of records into that shape is exactly the boring step you should never do by hand.
Convert JSON to JSONL takes a JSON document — typically an array of objects — and rewrites it as one compact JSON value per line. Strings keep their escaped newlines, so the output is always valid JSONL.