Skip to content
Novus Examples
jsonl483 B

GDPR Activity Log (JSONL, SAMPLE)

SAMPLE activity JSONL for subject-access export pipelines.

Preview — first 8 linesjsonl
{"ts": "2026-01-01T12:00:00Z", "action": "view", "path": "/SAMPLE"}
{"ts": "2026-01-02T12:00:00Z", "action": "view", "path": "/SAMPLE"}
{"ts": "2026-01-03T12:00:00Z", "action": "view", "path": "/SAMPLE"}
{"ts": "2026-01-04T12:00:00Z", "action": "view", "path": "/SAMPLE"}
{"ts": "2026-01-05T12:00:00Z", "action": "view", "path": "/SAMPLE"}
{"ts": "2026-01-06T12:00:00Z", "action": "view", "path": "/SAMPLE"}
{"ts": "2026-01-07T12:00:00Z", "action": "view", "path": "/SAMPLE"}

Specifications

Lines
7
Note
fictional SAMPLE

What is a .jsonl file?

JSONL (JSON Lines) is a text format where each line is a complete, independent JSON value, allowing records to be streamed and appended without parsing the whole file. It is not itself a JSON array and each line must stand alone. It is common in logging, machine learning datasets, and data pipelines.

How to use this file

Use an example JSONL to test line-by-line streaming parsers, append-and-resume ingestion, and batch pipelines that process one record per line.

How to use this file for testing

“GDPR Activity Log (JSONL, SAMPLE)” is a deterministic Novus Examples fixture for Privacy export testing, Data import. Sample subject-access ZIP packages, DPA/consent templates, and fictional PII — for testing privacy-export parsers and consent UX tooling.

Documented properties for this file: JSONL · 483 bytes. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Archive fixtures are documented down to their member list (shown on this page) and are deliberately safe — no zip bombs, executables, or hidden payloads. Test extractors against nested, unicode, empty, and encrypted variants.

Code examples

import json

with open("gdpr-activity.jsonl") as f:
    rows = [json.loads(line) for line in f]
print(len(rows), rows[0])

Generated by generation/residuals_wave_h.py. Free for any use, no attribution required — license.