Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the annual overview as created on the server. |
| created | string | The timestamp of the annual overview 's creation. |
| updated | string | The timestamp of the annual overview 's last update. |
| year | integer | The year for which the overview is. |
| alias_user | object | The user to which this annual overview belongs. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExportAnnualOverviewListing",
"title": "ExportAnnualOverviewListing",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the annual overview as created on the server.",
"readOnly": true,
"writeOnly": false
},
"created": {
"type": "string",
"description": "The timestamp of the annual overview 's creation.",
"readOnly": true,
"writeOnly": false
},
"updated": {
"type": "string",
"description": "The timestamp of the annual overview 's last update.",
"readOnly": true,
"writeOnly": false
},
"year": {
"type": "integer",
"description": "The year for which the overview is.",
"readOnly": true,
"writeOnly": false
},
"alias_user": {
"type": "object",
"description": "The user to which this annual overview belongs.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelUser"
}
}
}