> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plane.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Time Entry

Each `Time Entry` object is a record of your team’s working time.
Accurately tracking your team members’ time is essential for payroll and billing accuracy, and compliance with local labor and overtime laws.

### Attributes

<ResponseField name="id" type="string">
  Unique identifier for the time entry, e.g. `tme_1HPCXADYAhh5k1NMU0r1WUqs`.
</ResponseField>

<ResponseField name="worker" type="string">
  ID of the worker this time entry is for.
</ResponseField>

<ResponseField name="duration" type="string">
  The duration of the time entry in hours.
</ResponseField>

<ResponseField name="date" type="string">
  Date this time entry is for. Can be used together with `duration` to track time without providing
  explicit `starts` and `ends` times for each entry.
</ResponseField>

<ResponseField name="note" type="string">
  An additional note about the time entry.
</ResponseField>

<ResponseField name="created" type="string">
  ISO 8601 formatted timestamp indicating when the time entry was created.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "tme_1HPCXADYAhh5k1NMU0r1WUqs",
    "worker": "wr_CgcLakmx4guire",
    "date": "2024-03-17",
    "duration": "8.0",
    "note": null,
    "created": "2024-03-17T10:30:00Z"
  }
  ```
</ResponseExample>
