CSV (comma-separated values) is a plain-text format where each line is a record and fields are separated by commas.
Why it matters
Fields containing commas or quotes are wrapped in quotes. CSV is flat, so nested data such as JSON objects must be flattened first.
Source: RFC 4180