One record per person, one file per format. Every person shares the same fields.
Alice:
- CSV: alice.csv
- JSON: alice.json
- XML: alice.xml
Bob:
Fields
Identical in the three formats and for every person:
id— integer identifierfirst_name,last_name— given name and family namesex—ForMage— age in yearsbirth_date— ISO 8601 date,YYYY-MM-DDemail,phone— contact detailsstreet,postal_code,city,country— postal addressoccupation— job title
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.