YearData

YearData

연 단위 데이터를 담는 스키마예요. 분석 대상 연도(years) 목록을 배열로 가져요.

출처: 문서

본문

연 단위 데이터를 담는 스키마예요. 분석 대상 연도(years) 목록을 배열로 가져요.

실제 JSON 스키마는 다음과 같아요.

{
  "examples": [
    {
      "years": [
        {
          "year": 2025
        }
      ]
    }
  ],
  "properties": {
    "years": {
      "items": {
        "$ref": "#/components/schemas/YearModel"
      },
      "type": "array"
    }
  },
  "type": "object"
}

더 알아보기