JSON (JavaScript Object Notation) is a lightweight, text-based format for representing structured data, including nested objects and arrays. It is the default format most application code, APIs, and AI pipelines expect, and it handles hierarchical data CSV cannot represent cleanly.

Example

A dataset record for a business with multiple locations can store all locations as an array within a single JSON record, something a flat CSV row cannot do cleanly.

Related Terms