OBJECT
Timesheet
Timesheet record
link GraphQL Schema definition
- type Timesheet {
- # Unique timesheet ID.
- Int! :
- # The work item code associated with this timesheet
- TimesheetWorkItem] : [
- # The associated timesheet activities.
- TimesheetActivity] : [
- # The allocation this timesheet was attached to.
- Allocation :
- # The allowances associated with this timesheet.
- Allowance] : [
- # The assets associated with this timesheet.
- Asset] : [
- # The break time in minutes.
- String! :
- # The charge items associated with this timesheet
- TimesheetChargeItem] : [
- # The status of the charge items on the timesheet.
- TimesheetItemStatus :
- # The client associated with this timesheet.
- Client! :
- # The comments on a timesheet.
- String :
- # The user that created the timesheet.
- User :
- # The date the timesheet was created.
- DateTime! :
- # The digital dockets associated with this timesheet.
- DigitalDocket] : [
- # The digital docket worker information specifically for this timesheet.
- DigitalDocketWorker] : [
- # The timesheet docket
- Docket :
- # The datetime the timesheet log ends.
- DateTimeExpression! :
- # Geolocation (submission location for loose timesheets, otherwise check-in
- # location).
- Geolocation :
- # Check-out geolocation for the timesheet.
- Geolocation :
- # Whether timesheet has been approved.
- Boolean! :
- # Whether timesheet has been locked.
- Boolean! :
- # The job number.
- String :
- # Timesheet submitted location.
- String :
- # The user that last modified this timesheet.
- User :
- # The date the timesheet was last modified.
- DateTime :
- # Internal notes for the timesheet.
- String :
- # The order associated with this timesheet.
- Order :
- # The pay items associated with this timesheet.
- TimesheetPayItem] : [
- # The status of the pay items on the timesheet.
- TimesheetItemStatus :
- # The project associated with this timesheet.
- Project :
- # The site diary the timesheet associated with
- SiteDiary :
- # The signature image url attached to the timesheet.
- NonEmptyString :
- # The user's name of the signature attached.
- String :
- # The datetime the timesheet log starts.
- DateTimeExpression! :
- # The date the timesheet was submitted.
- DateTimeExpression! :
- # The task associated with this timesheet.
- Task :
- # The total time of the timesheet (HH:mm).
- String! :
- # The total time of the timesheet (as a decimal number of hours).
- Float! :
- # The user the timesheet belongs to.
- User! :
- # (DEPRECATED) The signature image url attached to the timesheet.
- String @deprecated( reason: "Use `signature_image` instead." ) :
- # (DEPRECATED) The associated timesheet activity.
- TimesheetActivity] @deprecated( reason: "Use `activities` instead." ) : [
- # (DEPRECATED) The time the timesheet log starts.
- TimeExpression! @deprecated( reason: "Use `start_datetime` instead." ) :
- # (DEPRECATED) The time the timesheet log ends.
- TimeExpression! @deprecated( reason: "Use `end_datetime` instead." ) :
- # (DEPRECATED) The date the timesheet was created in UTC+0.
- DateTime! @deprecated( reason: "Use `created_time` instead." ) :
- # The date the timesheet was deleted in UTC+0.
- DateTime :
- }