[
Atlas
]
Tools
ES
/
EN
← All tools
JSON Schema Generator
Generate a JSON Schema from a sample JSON object.
{ "id": 1, "name": "Ana", "active": true, "tags": ["a", "b"] }
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "active": { "type": "boolean" }, "tags": { "type": "array", "items": { "type": "string" } } }, "required": [ "id", "name", "active", "tags" ] }