WebTools
所有工具
🇺🇸
EN
🇯🇵
JA
🇨🇳
ZH
🇰🇷
KO
首页
/
工具列表
/
JSON Schema 生成器 v2
JSON Schema 生成器 v2
从示例JSON生成带有类型推断的JSON Schema。
JSON Input
{ "name": "Alice", "age": 30, "email": "alice@example.com", "active": true, "tags": ["dev", "admin"] }
Add required array
JSON Schema (Draft-07)
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" }, "email": { "type": "string", "format": "email" }, "active": { "type": "boolean" }, "tags": { "type": "array", "items": { "type": "string" } } }, "required": [ "name", "age", "email", "active", "tags" ] }
Copy Schema
相关工具
JSON 验证器
JSON 转 TypeScript
JSON Schema 生成器
JSON 格式化工具
关于此工具
从示例JSON生成带有类型推断的JSON Schema。