Loadingβ¦
Loadingβ¦
Auto-generate JSON Schema (Draft-07 / 2020-12) from any JSON object with nested definitions.
Loading tool...
Remove ads and work faster? Go Premium.
Unlock PremiumFormat, beautify, and validate JSON data with syntax highlighting.
Developer ToolsTest REST API endpoints with custom methods, headers, and body β like Postman in your browser.
Developer ToolsExplore JSON data, discover all paths, and query values using JSONPath-like syntax.
Developer ToolsBuild GraphQL queries, mutations, and fragments visually without writing raw syntax.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "MySchema",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier"
},
"name": {
"type": "string",
"description": "Name of the item",
"minLength": 1
},
"email": {
"type": "string",
"format": "email"
}
},
"required": [
"id",
"name"
]
}