Skip to main content

JSON Line writer

Generate a JSONL file on which you can append multiple JSON elements line by line.

Example
// 1st input:
{ "hello": "World" }

// 2nd input:
{ "hello": "France" }

// Configuration:

// Output:
{ "hello": "World" }
{ "hello": "France" }

Input

JSON elementREQUIRED

All the JSON elements to append to the JSON file. It accepts fragment of JSON which will be merged if possible, or overwritten. For example:

Fragments of JSON
{"name": "John"}
{"age": "27"}
{"age": "42"}
Merged JSON
{"name": "John", "age": "42"}