Darda
Lab
홈
소개
서비스
Labs
연락
EN
의뢰하기 →
JSON Schema Validator
스키마 작성 + 유효성 검증
유효함
JSON Schema
{ "type": "object", "required": ["name", "email", "age"], "properties": { "name": { "type": "string", "minLength": 2, "maxLength": 50 }, "email": { "type": "string", "format": "email" }, "age": { "type": "integer", "minimum": 0, "maximum": 150 }, "role": { "type": "string", "enum": ["admin", "user", "moderator"] } } }
검증할 데이터
{ "name": "Alice", "email": "alice@example.com", "age": 28, "role": "admin" }
✓ 유효한 데이터입니다