JSONL (JSON line format)

Is it possible to generate a JSONL output from the tool? I receive my data in that format which essentially means that each row in the file is a completly seperate JSON document to the line before or after and the formatting style is quite different.

The data from the tool that comes out as JSON look like:

where as the JSONL format I’d like to be able to get out is:

The key differences being all data (regardless of length) is on one line and it must end in a linefeed.

More about JSONL

The closest I can get is to use a custom export and to use Delimiter as , Quote as " and Line Ending as Unix LF, however it still puts square brackets around each line that I don’t want:

If anyone knows if this is possible that would be great.

PS, sorry to split across mulitple posts to thread but I can only post one image per post as a new user as pictures help a lot I find.

Thanks

Update, I’ve also found that I can turn off the array function when using JSON and that is very close to what I want however, the return function \r\n when I need \n.

If anyone knows how to change it that way it would be awesome.

Thanks