What is TSV?
CSV with tabs instead of commas, and the better choice more often than people realise. Tabs almost never appear inside a field, so the quoting rules that make CSV parsing miserable largely evaporate. Anything with prose, addresses or European decimals in it is safer as TSV.
What is NDJSON?
One JSON object per line, with no wrapping array. That small change is the whole point: a program can read a record at a time instead of parsing gigabytes into memory first, which is why log pipelines, bulk importers and search indexes all speak it.