Decode Nested JSON Online Free

JSON Schema To JSON

No JSON data to display

Related Tools

How It Works

See how NextJSON can generate a JSON object from a JSON Schema.

Convert JSON Schema to JSON

Generate a sample JSON object from a JSON Schema

Input
{
  "$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"]
}
Output
{
  "name": "John Doe",
  "email": "[email protected]",
  "age": 11,
  "online": true,
  "dailyAffirmations": [
    "sample string",
    "sample string"
  ]
}