📋 JSON Schema Validator / JSON Schema 验证器
Validate JSON data against JSON Schema visually / 可视化验证 JSON 数据是否符合 Schema
JSON Data / JSON 数据
JSON Schema / JSON Schema
Supported Validations / 支持的验证规则
Type / 类型:
- string, number, integer, boolean, array, object
String / 字符串:
- minLength, maxLength
- pattern (regex)
- format (email, uri, date, uuid, etc.)
Number / 数字:
- minimum, maximum
Object / 对象:
- required properties
- properties definition
- additionalProperties
Array / 数组:
- minItems, maxItems
- items schema
Other / 其他:
- enum (allowed values)