JSONL format support / current workaround

JSONL appears to be growing in popularity (especially with AI related projects).
EasyMorph might benefit from supporting this format.
It’s basically just a collection of JSON objects (one per line).

In the meantime, I was able to use the existing JSON parser through the Iterate action and accomplish the same goal.

Leaving this sample project here in case other EasyMorphers needs to read JSONL data.

parse_JSONL.morph (24.1 KB)

You don't need iterations here. The "Parse JSON" action works on multiple lines too.

Linking my other example:

Yes can confirm on my end.
Apologies for any confusion.

I went back to the original data I was working with. I think I created the Iteration to preserve the original message (which was split across 3 rows). But can see in the “Parse JSON” Action under “Advanced Settings” there is an option “Don’t delete original column” - which does the same thing.

So no need to change EasyMorph. All good for JSONL!