首页
/
工具集
/
JSON Schema 假数据生成器
JSON Schema 假数据生成器
JSON Schema
{ "type": "object", "properties": { "id": { "type": "integer", "minimum": 1, "maximum": 1000 }, "name": { "type": "string", "minLength": 2, "maxLength": 20 }, "email": { "type": "string", "format": "email" }, "age": { "type": "integer", "minimum": 18, "maximum": 80 }, "isActive": { "type": "boolean" }, "tags": { "type": "array", "items": { "type": "string" }, "minItems": 1, "maxItems": 5 }, "address": { "type": "object", "properties": { "street": { "type": "string" }, "city": { "type": "string" }, "zipCode": { "type": "string", "pattern": "^\\d{5,6}$" } }, "required": ["street", "city"] } }, "required": ["id", "name", "email"] }
Number of Records
Generate Fake Data 🎲