Schema
YearData
Type:
object
years
Type:
array
Array item
Schema:
YearModel
All schema constraints and annotations
{
"items": {
"$ref": "#/components/schemas/YearModel"
},
"type": "array"
}All schema constraints and annotations
{
"examples": [
{
"years": [
{
"year": 2025
}
]
}
],
"properties": {
"years": {
"items": {
"$ref": "#/components/schemas/YearModel"
},
"type": "array"
}
},
"type": "object"
}