Paste a TypeScript interface or SQL DDL and get realistic JSON rows for fixtures, demos, and local DBs.
Privacy: Runs on Codeground's self-hosted AI. Schema text is not stored.
AI can make mistakes. Please review important output before you rely on it.
Schema
Hand-written mock data drifts from the real schema. Paste a TypeScript interface, Zod-ish shape, or CREATE TABLE DDL and get realistic JSON rows for tests, Storybook, demos, and local databases — with notes about assumptions the model made.
CREATE TABLE statements (output keyed by table).users(id, email, role) when you need speed over precision.foo / bar.Is the data real PII? No. Values are invented. Still avoid pasting production dumps into the schema field.
Multi-table SQL? Yes. Related tables are returned as an object keyed by table name when possible.
Can I get CSV instead? Copy the JSON into JSON ↔ CSV for a quick conversion.
Deterministic IDs? Not guaranteed across regenerations. Pin IDs in tests if you need stability.
Related: JSON Formatter · JSON ↔ CSV · SQL Assistant · SQL Query Generator