Sidebar
0 votes
27 views
ago by ben-s-7515 (13.1k points)
I am receiving an NDJSON file and need to be able to parse it. What is the specification?

1 Answer

0 votes
The NDJSON allows batch JSON messages to be sent. Each line of the file represents a single record, so this means that the file is using unformatted JSON.

More information can be found at: https://github.com/ndjson/ndjson-spec
ago by ben-s-7515 (13.1k points)
...