Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| worker | object | |
| absenceType | object | |
| date | string | |
| quantity | number | |
| unit | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TimeOffEntry",
"title": "TimeOffEntry",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"worker": {
"$ref": "#/components/schemas/ResourceReference"
},
"absenceType": {
"$ref": "#/components/schemas/ResourceReference"
},
"date": {
"type": "string",
"format": "date"
},
"quantity": {
"type": "number"
},
"unit": {
"type": "string"
},
"status": {
"type": "string"
}
}
}