Skip to main content
DevTools24

JSON Schema 생성기

샘플 JSON 데이터에서 JSON Schema를 생성합니다. 타입, 형식(이메일, 날짜, UUID) 및 구조를 자동으로 감지합니다.

About JSON Schema

  • JSON Schema is a vocabulary for annotating and validating JSON documents
  • Formats detected: date, date-time, email, uri, uuid
  • Numbers are typed as "integer" or "number" based on value
  • Array items are inferred from the first element

JSON Schema - 기술 세부 정보

JSON Schema is a vocabulary for annotating and validating JSON documents. It's used for API validation, configuration validation, and documentation. This tool generates Draft-07 compatible schemas.

명령줄 대안

# Validate JSON against schema\nnpx ajv validate -s schema.json -d data.json\n\n# Generate schema with quicktype\nnpx quicktype --lang schema data.json

참조

공식 사양 보기