All tools JSON Schema Generator ● Live Developer Tools

JSON Schema Generator

Infer a starter JSON Schema from a sample JSON object or array. Everything runs locally in this tab.

Output
{
  "type": "object",
  "required": [
    "id",
    "email",
    "active"
  ],
  "properties": {
    "id": {
      "type": "number"
    },
    "email": {
      "type": "string"
    },
    "active": {
      "type": "boolean"
    }
  }
}