MonthData
MonthData
월 단위 데이터를 담는 스키마예요. 분석 대상 월(months) 목록을 배열로 가져요.
출처: 문서
본문
월 단위 데이터를 담는 스키마예요. 분석 대상 월(months) 목록을 배열로 가져요.
실제 JSON 스키마는 다음과 같아요.
{
"examples": [
{
"months": [
{
"month": 5
},
{
"month": 7
}
]
}
],
"properties": {
"months": {
"items": {
"$ref": "#/components/schemas/MonthModel"
},
"type": "array"
}
},
"required": [
"months"
],
"type": "object"
}