ToolHub
中文
Dark
GitHub
返回首页
/
格式化
/
JSON Schema 验证
加载中...
JSON Schema
{ "type": "object", "required": ["name", "age", "email"], "properties": { "name": { "type": "string", "minLength": 2, "maxLength": 50 }, "age": { "type": "number", "minimum": 0, "maximum": 150 }, "email": { "type": "string", "pattern": "^[^@]+@[^@]+\.[^@]+$" }, "tags": { "type": "array", "items": { "type": "string" }, "maxItems": 5 } } }
待验证数据
{ "name": "Alice", "age": 28, "email": "alice@example.com", "tags": ["developer", "designer"] }
验证