# Output Format

Each order is delivered as a single **ZIP** containing **NDJSON** files - one JSON object per line.

## Files inside the ZIP

- Files are named by data type: `news_0000001.json`, `blogs_0000001.json`, `discussions_0000001.json`.
- A file is split into a new numbered part when it reaches **500 MB**.

## Reading NDJSON

Parse each line as its own JSON object - `jq` handles NDJSON natively:

```bash
jq .title news_0000001.json
```

For the fields inside each object, see [Data Fields](archive-data-fields).

