# The Timesheet Entry Object ### Description The `Timesheet Entry` object is used to track coverage for hours worked by an 'Employee'. ### Usage Example GET and POST Timesheet Entries
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TimesheetEntryRequest",
"title": "TimesheetEntryRequest",
"type": "object",
"properties": {
"employee": {
"type": [
"string",
"null"
],
"format": "uuid",
"description": "The employee the timesheet entry is for."
},
"hours_worked": {
"type": [
"number",
"null"
],
"format": "double",
"description": "The number of hours logged by the employee."
},
"start_time": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "The time at which the employee started work."
},
"end_time": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "The time at which the employee ended work."
},
"integration_params": {
"type": [
"object",
"null"
],
"additionalProperties": {
"description": "Any type"
}
},
"linked_account_params": {
"type": [
"object",
"null"
],
"additionalProperties": {
"description": "Any type"
}
}
},
"description": "# The Timesheet Entry Object\n### Description\nThe `Timesheet Entry` object is used to track coverage for hours worked by an 'Employee'.\n\n\n### Usage Example\nGET and POST Timesheet Entries"
}