Generate repeatable mock JSON from a JSON Schema for tests and prototypes.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
The schema is traversed to create primitive values, properties, arrays, enums, and selected format examples. A seeded random generator repeats the same sample while unseeded runs vary.
{
"type": "object",
"properties": {
"name": {"type": "string"},
"email": {"type": "string", "format": "email"},
"age": {"type": "integer", "minimum": 18, "maximum": 65}
},
"required": ["name", "email", "age"]
}
{
"name": "xcbiuyz",
"email": "[email protected]",
"age": 23
}
API fixtures, mock servers, and load-test payloads generate schema-shaped data.