- What data types?
- Names, emails, addresses, phones, company names, job titles, dates, booleans. Plus random primitives: numbers, strings, UUIDs. Mix for realistic user records.
- CSV or JSON output?
- Both, plus SQL INSERT statements. Pick a schema (columns and types), generate N rows, export in your target format.
- Is the data internationally consistent?
- Addresses and phones match the chosen locale. Names draw from a global pool (unless you select a specific locale). Emails use realistic domain patterns.
- Can I seed reproducibly?
- Yes — supply a seed to get the same data every run. Useful for CI tests where you need deterministic fixtures.