What is NDJSON?
NDJSON (Newline Delimited JSON) is a data format where each line of a file is a valid, standalone JSON object. By removing the root array brackets and inter-record commas of standard JSON, NDJSON allows scraping pipelines to stream, append, and parse gigabyte-scale datasets line-by-line. It eliminates the out-of-memory crashes associated with monolithic JSON parsing while preserving the ability to handle deeply nested data structures that break flat CSVs.