Information and examples of the format can be found here.
TLDR; JSON Lines aka JSONL aka new-line delimited JSON, is a format to store structured format that is designed to be consumed line by line.
In this repo there are 3 projects of note:
- JSONL.Writer
- JSONL.Reader
- JSONL.Reader.NewtonSoft
This command line application is an example of writing a JSONL file using the out of the box tooling of System.Text.Json
.
This command line application is an example of reading a JSONL file using System.Text.Json
.
This command line application is an example of reading a JSONL file using Newtonsoft.Json
.