Schema
WeekData
Type:
object
weeks
· required
Type:
array
Array item
Schema:
WeekModel
All schema constraints and annotations
{
"items": {
"$ref": "#/components/schemas/WeekModel"
},
"type": "array"
}All schema constraints and annotations
{
"examples": [
{
"weeks": [
{
"week": 31
},
{
"week": 32
}
]
}
],
"properties": {
"weeks": {
"items": {
"$ref": "#/components/schemas/WeekModel"
},
"type": "array"
}
},
"required": [
"weeks"
],
"type": "object"
}