JSON and TSV explained
JSON represents structured data as nested objects and arrays. It came from JavaScript but is now the default interchange format for essentially every web API.
TSV is CSV with tab characters as separators. Because tabs almost never appear inside data fields, it sidesteps most of CSV's quoting problems.
- Where JSON files come from
- APIs, configuration files and application data exports.
- Where TSV is used
- Bioinformatics, data pipelines and anywhere fields contain commas.