Schema
MonthData
Type:
object
months
· required
Type:
array
Array item
Schema:
MonthModel
All schema constraints and annotations
{
"items": {
"$ref": "#/components/schemas/MonthModel"
},
"type": "array"
}All schema constraints and annotations
{
"examples": [
{
"months": [
{
"month": 5
},
{
"month": 7
}
]
}
],
"properties": {
"months": {
"items": {
"$ref": "#/components/schemas/MonthModel"
},
"type": "array"
}
},
"required": [
"months"
],
"type": "object"
}