Sample Datasets Person new

Person

One record per person — Alice and Bob — with identity, contact details and postal address in CSV, JSON and XML with identical fields

One record per person, one file per format. Every person shares the same fields.

Alice:

Bob:

Fields

Identical in the three formats and for every person:

Usage

The files live next to this page and can be fetched directly, for example from the browser console:

const person = await fetch('/sandbox/sample/person/_data/alice.json').then((response) => response.json());
console.log(person.first_name);

All data is synthetic. Any resemblance to a real person is coincidental.