No JSON data to display
See how NextJSON can generate a JSON object from a JSON Schema.
Generate a sample JSON object from a JSON Schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "age": { "type": "number" }, "online": { "type": "boolean" }, "dailyAffirmations": { "type": "array", "items": { "type": "string" } } }, "required": [ "message", "mood", "dailyAffirmations"] }
{ "name": "John Doe", "email": "[email protected]", "age": 11, "online": true, "dailyAffirmations": [ "sample string", "sample string" ] }