☰
Home
/
Data & Formatting
/
JSON Schema Generator
📋
JSON Schema Generator
Generate JSON Schema (draft-07) from sample
☆
Bookmark
Loading tool…
JSON sample
{ "id": 1, "name": "Ada", "active": true, "tags": ["admin"] }
JSON Schema (draft-07)
⧉ Copy
{ "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "active": { "type": "boolean" }, "tags": { "type": "array", "items": { "type": "string" } } }, "required": [ "id", "name", "active", "tags" ], "title": "MySchema", "$schema": "http://json-schema.org/draft-07/schema#" }