V
Vel·ToolKit
简洁 · 高效 · 即开即用
ZH

JSON Schema

JSON 反推 JSON Schema

Draft
required 策略
输入
JSON Schema
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "email": { "type": "string", "format": "email" }, "active": { "type": "boolean" }, "createdAt": { "type": "string", "format": "date-time" }, "tags": { "type": "array", "items": { "type": "string" } }, "meta": { "type": "object", "properties": { "score": { "type": "number" } }, "required": [ "score" ] } }, "required": [ "id", "name", "email", "active", "createdAt", "tags" ] } }
Draft draft-07字符 876