Schema
TimespanData
All schema constraints and annotations
{
"examples": [
{
"months": [
{
"month": 5
},
{
"month": 7
}
]
},
{
"weeks": [
{
"week": 31
},
{
"week": 32
}
]
}
],
"oneOf": [
{
"$ref": "#/components/schemas/MonthData"
},
{
"$ref": "#/components/schemas/WeekData"
}
]
}