JSON Schema Generator
Generate a JSON Schema (draft-07) from a sample JSON document automatically.
- Runs in your browser
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"active": {
"type": "boolean"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"address": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"zip": {
"type": "string"
}
},
"required": [
"city",
"zip"
]
}
},
"required": [
"id",
"name",
"email",
"active",
"tags",
"address"
]
}Was this tool useful?