Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| worker | object | |
| date | string | |
| startTime | string | |
| endTime | string | |
| totalHours | number | |
| timeCode | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TimeBlock",
"title": "TimeBlock",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"worker": {
"$ref": "#/components/schemas/ResourceReference"
},
"date": {
"type": "string",
"format": "date"
},
"startTime": {
"type": "string",
"format": "date-time"
},
"endTime": {
"type": "string",
"format": "date-time"
},
"totalHours": {
"type": "number"
},
"timeCode": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}