Infer a starter JSON Schema from a sample JSON object or array. Everything runs locally in this tab.
{
"type": "object",
"required": [
"id",
"email",
"active"
],
"properties": {
"id": {
"type": "number"
},
"email": {
"type": "string"
},
"active": {
"type": "boolean"
}
}
}