{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.supasaju.com/schemas/elements.json",
  "title": "elements 모듈 응답",
  "description": "실제 엔진 출력에서 생성된 스키마입니다.",
  "type": "object",
  "properties": {
    "counts": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "element": {
            "type": "string",
            "examples": [
              "wood",
              "fire"
            ]
          },
          "ko": {
            "type": "string",
            "examples": [
              "목",
              "화"
            ]
          },
          "han": {
            "type": "string",
            "examples": [
              "木",
              "火"
            ]
          },
          "visible": {
            "type": "integer",
            "examples": [
              2,
              1
            ]
          },
          "visibleStems": {
            "type": "integer",
            "examples": [
              1,
              2
            ]
          },
          "visibleBranches": {
            "type": "integer",
            "examples": [
              1,
              0
            ]
          },
          "withHidden": {
            "type": "integer",
            "examples": [
              6,
              1
            ]
          },
          "visiblePercent": {
            "type": "number",
            "examples": [
              25,
              12.5
            ]
          },
          "withHiddenPercent": {
            "type": "number",
            "examples": [
              40,
              6.7
            ]
          },
          "label": {
            "type": "string",
            "examples": [
              "보통",
              "적음"
            ]
          },
          "nature": {
            "type": "string"
          },
          "meaning": {
            "type": "string",
            "examples": [
              "목이 알맞게 있어 성장의 기운이 다른 오행과 균형을 이루는 구조로 본다.",
              "화가 적어 열정과 표현의 기운이 조용히 자리한 구조로 읽는다."
            ]
          }
        },
        "required": [
          "element",
          "han",
          "ko",
          "label",
          "visible",
          "visibleBranches",
          "visiblePercent",
          "visibleStems",
          "withHidden",
          "withHiddenPercent"
        ]
      }
    },
    "totalVisible": {
      "type": "integer",
      "examples": [
        8,
        6
      ]
    },
    "totalWithHidden": {
      "type": "integer",
      "examples": [
        15,
        16
      ]
    },
    "strongest": {
      "type": "array",
      "items": {
        "type": "string",
        "examples": [
          "earth",
          "fire"
        ]
      }
    },
    "missing": {
      "type": "array",
      "items": {
        "type": "string",
        "examples": [
          "metal",
          "water"
        ]
      }
    },
    "dayMasterElement": {
      "type": "string",
      "examples": [
        "earth",
        "metal"
      ]
    },
    "basis": {
      "type": "array",
      "items": {
        "type": "string",
        "examples": [
          "시주 미상이라 6글자 기준이다."
        ]
      }
    }
  },
  "required": [
    "counts",
    "dayMasterElement",
    "missing",
    "strongest",
    "totalVisible",
    "totalWithHidden"
  ]
}