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를 생성합니다.