Deel subpackage_timesheets API

The subpackage_timesheets API from Deel — 4 operation(s) for subpackage_timesheets.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/deel-subpackage-timesheets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

deel-subpackage-timesheets-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Endpoints subpackage_timesheets API
  version: 1.0.0
servers:
- url: https://api.letsdeel.com/rest/v2
- url: https://api-staging.letsdeel.com/rest/v2
tags:
- name: subpackage_timesheets
paths:
  /timesheets:
    post:
      operationId: create-timesheet
      summary: Create a timesheet entry
      description: "Submit work for a contractor.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/timesheets_createTimesheet_Response_201'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
      requestBody:
        description: Timesheet object that needs to be created
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/TimesheetsPostRequestBodyContentApplicationJsonSchemaData'
                  description: Details of the timesheet to create. Both a client or a contractor may create a timesheet.
              required:
              - data
    get:
      operationId: get-timesheets
      summary: List of timesheets
      description: "Retrieve a list of timesheets in your Deel account. You can filter the list by providing additional paramters e.g. contract_id, contract_type etc.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: contract_id
        in: query
        description: Id of an Deel contract.
        required: false
        schema:
          type: string
      - name: contract_types
        in: query
        description: types of contracts to filter
        required: false
        schema:
          $ref: '#/components/schemas/TimesheetsGetParametersContractTypes'
      - name: statuses
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/TimesheetsGetParametersStatuses'
      - name: reporter_id
        in: query
        required: false
        schema:
          type: string
          format: uuid
      - name: date_from
        in: query
        required: false
        schema:
          type: string
          format: date
      - name: date_to
        in: query
        required: false
        schema:
          type: string
          format: date
      - name: limit
        in: query
        required: false
        schema:
          type: string
      - name: offset
        in: query
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/timesheets_getTimesheets_Response_200'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
  /contracts/{contract_id}/timesheets:
    get:
      operationId: get-contract-timesheets
      summary: List of timesheets by contract
      description: "Retrieve a list of timesheets found for a contract.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: contract_id
        in: path
        description: Deel contract id.
        required: true
        schema:
          type: string
      - name: contract_types
        in: query
        description: Types of contracts to filter.
        required: false
        schema:
          $ref: '#/components/schemas/ContractsContractIdTimesheetsGetParametersContractTypes'
      - name: statuses
        in: query
        description: Statuses of timesheets to filter.
        required: false
        schema:
          $ref: '#/components/schemas/ContractsContractIdTimesheetsGetParametersStatuses'
      - name: reporter_id
        in: query
        description: ID of an existing profile
        required: false
        schema:
          type: string
          format: uuid
      - name: date_from
        in: query
        description: 'Filtered results will include records created on or after the provided date. Short date in format ISO-8601 (YYYY-MM-DD). For example: 2022-12-31.'
        required: false
        schema:
          type: string
          format: date
      - name: date_to
        in: query
        description: 'Filtered results will include records created before the provided date. Short date in format ISO-8601 (YYYY-MM-DD). For example: 2022-12-31.'
        required: false
        schema:
          type: string
          format: date
      - name: limit
        in: query
        description: 'Return a page of results with given number of records; NOTE: technically ALL query parameters are strings or array of strings'
        required: false
        schema:
          type: string
      - name: offset
        in: query
        description: Return a page of results after given index of row
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/timesheets_getContractTimesheets_Response_200'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
  /timesheets/{id}:
    get:
      operationId: get-timesheet-by-id
      summary: Retrieve a single timesheet entry
      description: "Retrieve a single timesheet entry by Id.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: id
        in: path
        description: ID of an existing timesheet
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/timesheets_getTimesheetById_Response_200'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
    patch:
      operationId: update-timesheet
      summary: Update a timesheet entry
      description: "Use this endpoint to update an existing timesheet entry by its id when correcting logged hours or refining the work note. Send a PATCH request to /timesheets/:id with a data object containing fields to change, such as quantity, description, or hourly_report_preset_id. Both clients and contractors can perform this update.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: id
        in: path
        description: ID of an existing timesheet.
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/timesheets_updateTimesheet_Response_201'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/TimesheetsIdPatchRequestBodyContentApplicationJsonSchemaData'
              required:
              - data
    delete:
      operationId: delete-timesheet-by-id
      summary: Delete a timesheet entry
      description: "Delete a single timesheet entry.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: id
        in: path
        description: ID of an existing timesheet
        required: true
        schema:
          type: string
      - name: reason
        in: query
        description: Reason for deleting an existing task
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Timesheets_deleteTimesheetById_Response_200'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
  /timesheets/{id}/reviews:
    post:
      operationId: create-timesheet-review
      summary: Review a single timesheet
      description: "Review a timesheet to approve or decline submitted work.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_timesheets
      parameters:
      - name: id
        in: path
        description: ID of an existing timesheet
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/timesheets_createTimesheetReview_Response_201'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/TimesheetsIdReviewsPostRequestBodyContentApplicationJsonSchemaData'
components:
  schemas:
    TimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReviewedBy:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of this resource.
        remarks:
          type: string
        full_name:
          type: string
        reviewed_at:
          type: string
          format: date-time
      required:
      - id
      - remarks
      - reviewed_at
      title: TimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReviewedBy
    ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReviewedBy:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of this resource.
        remarks:
          type: string
        full_name:
          type: string
        reviewed_at:
          type: string
      required:
      - id
      - remarks
      - reviewed_at
      title: ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReviewedBy
    TimesheetsGetResponsesContentApplicationJsonSchemaDataItemsStatus:
      type: string
      enum:
      - approved
      - declined
      - not_payable
      - paid
      - pending
      - processing
      description: status of invoice adjustment
      title: TimesheetsGetResponsesContentApplicationJsonSchemaDataItemsStatus
    TimesheetsIdGetResponsesContentApplicationJsonSchemaDataWorksheet:
      type: object
      properties:
        days:
          type: number
          format: double
        hours:
          type: number
          format: double
        weeks:
          type: number
          format: double
        minutes:
          type: number
          format: double
      required:
      - days
      - hours
      - weeks
      - minutes
      title: TimesheetsIdGetResponsesContentApplicationJsonSchemaDataWorksheet
    timesheets_createTimesheetReview_Response_201:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TimesheetsIdReviewsPostResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: timesheets_createTimesheetReview_Response_201
    timesheets_createTimesheet_Response_201:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TimesheetsPostResponsesContentApplicationJsonSchemaData'
          description: Details of invoice adjustment created.
      required:
      - data
      title: timesheets_createTimesheet_Response_201
    Timesheets_deleteTimesheetById_Response_200:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TimesheetsIdDeleteResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: Timesheets_deleteTimesheetById_Response_200
    TimesheetsGetResponsesContentApplicationJsonSchemaPage:
      type: object
      properties:
        total_rows:
          type: number
          format: double
      required:
      - total_rows
      title: TimesheetsGetResponsesContentApplicationJsonSchemaPage
    TimesheetsIdDeleteResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        deleted:
          type: boolean
          description: Confirms the deletion.
      required:
      - deleted
      title: TimesheetsIdDeleteResponsesContentApplicationJsonSchemaData
    TimesheetsIdPatchResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        updated:
          type: boolean
      required:
      - updated
      title: TimesheetsIdPatchResponsesContentApplicationJsonSchemaData
    ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReportedBy:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of this resource.
        full_name:
          type: string
      required:
      - id
      title: ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReportedBy
    TimesheetsGetParametersContractTypes0:
      type: array
      items:
        $ref: '#/components/schemas/TimesheetsGetParametersContractTypesSchemaOneOf0Items'
      description: List of contract types
      title: TimesheetsGetParametersContractTypes0
    TimesheetsGetParametersContractTypes1:
      type: string
      enum:
      - ongoing_time_based
      - pay_as_you_go_time_based
      - payg_milestones
      - payg_tasks
      title: TimesheetsGetParametersContractTypes1
    TimesheetsIdGetResponsesContentApplicationJsonSchemaDataPaymentCycle:
      type: object
      properties:
        end_date:
          type:
          - string
          - 'null'
          format: date-time
          description: Long date-time format following ISO-8601
        start_date:
          type:
          - string
          - 'null'
          format: date-time
          description: Long date-time format following ISO-8601
      title: TimesheetsIdGetResponsesContentApplicationJsonSchemaDataPaymentCycle
    ContractsContractIdTimesheetsGetParametersStatuses:
      oneOf:
      - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetParametersStatuses0'
      - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetParametersStatuses1'
      title: ContractsContractIdTimesheetsGetParametersStatuses
    ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsPaymentCycle:
      type: object
      properties:
        end_date:
          type:
          - string
          - 'null'
          format: date-time
          description: Long date-time format following ISO-8601
        start_date:
          type:
          - string
          - 'null'
          format: date-time
          description: Long date-time format following ISO-8601
      title: ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsPaymentCycle
    TimesheetsIdGetResponsesContentApplicationJsonSchemaDataAttachment:
      type: object
      properties:
        key:
          type: string
          description: You can call attachments end-point, get key and URL to upload your file.
        filename:
          type: string
          description: Original filename you used to upload using attachments end-point.
      required:
      - key
      - filename
      description: This object is used for linking file attachments to your records.
      title: TimesheetsIdGetResponsesContentApplicationJsonSchemaDataAttachment
    TimesheetsGetResponsesContentApplicationJsonSchemaDataItemsAttachment:
      type: object
      properties:
        key:
          type: string
          description: You can call attachments end-point, get key and URL to upload your file.
        filename:
          type: string
          description: Original filename you used to upload using attachments end-point.
      required:
      - key
      - filename
      description: This object is used for linking file attachments to your records.
      title: TimesheetsGetResponsesContentApplicationJsonSchemaDataItemsAttachment
    ContractsContractIdTimesheetsGetParametersContractTypesSchemaOneOf0Items:
      type: string
      enum:
      - ongoing_time_based
      - milestones
      - time_based
      - pay_as_you_go_time_based
      - commission
      - payg_milestones
      - payg_tasks
      - eor
      - unknown
      - employee
      - global_payroll
      - shield_msa
      - hris_direct_employee
      - peo
      description: Type of a contract
      title: ContractsContractIdTimesheetsGetParametersContractTypesSchemaOneOf0Items
    ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsWorksheet:
      type: object
      properties:
        days:
          type: number
          format: double
        hours:
          type: number
          format: double
        weeks:
          type: number
          format: double
        minutes:
          type: number
          format: double
      required:
      - days
      - hours
      - weeks
      - minutes
      title: ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsWorksheet
    TimesheetsIdReviewsPostRequestBodyContentApplicationJsonSchemaData:
      type: object
      properties:
        reason:
          type:
          - string
          - 'null'
        status:
          $ref: '#/components/schemas/TimesheetsIdReviewsPostRequestBodyContentApplicationJsonSchemaDataStatus'
      required:
      - status
      title: TimesheetsIdReviewsPostRequestBodyContentApplicationJsonSchemaData
    ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportPreset:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: unique identifier of the related timesheet preset
        rate:
          type:
          - number
          - 'null'
          format: double
          description: the hourly rate of the related timesheet preset
        title:
          type:
          - string
          - 'null'
          description: the title of the related timesheet preset
        description:
          type:
          - string
          - 'null'
          description: the description of the related timesheet preset
      title: ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportPreset
    TimesheetsPostResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of this resource.
        status:
          oneOf:
          - $ref: '#/components/schemas/TimesheetsPostResponsesContentApplicationJsonSchemaDataStatus'
          - type: 'null'
          description: status of invoice adjustment
        created:
          type: boolean
        created_at:
          type:
          - string
          - 'null'
          format: date-time
          description: Long date-time format following ISO-8601
      required:
      - created
      description: Details of invoice adjustment created.
      title: TimesheetsPostResponsesContentApplicationJsonSchemaData
    ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of this resource.
        type:
          type: string
          description: Deprecated - it is always "work"
        scale:
          type:
          - string
          - 'null'
        status:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsStatus'
          - type: 'null'
          description: Status of this entry.
        contract:
          $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsContract'
        quantity:
          type:
          - number
          - 'null'
          format: double
        worksheet:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsWorksheet'
          - type: 'null'
        attachment:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsAttachment'
          - type: 'null'
          description: This object is used for linking file attachments to your records.
        created_at:
          type: string
        description:
          type: string
        reported_by:
          $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReportedBy'
        reviewed_by:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsReviewedBy'
          - type: 'null'
        custom_scale:
          type:
          - string
          - 'null'
        total_amount:
          type: string
          description: is equal to quantity times rate of active work statement + bonus in this record
        currency_code:
          type: string
        payment_cycle:
          $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsPaymentCycle'
        date_submitted:
          type: string
          format: date-time
          description: Long date-time format following ISO-8601
        hourly_report_preset:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportPreset'
          - type: 'null'
      required:
      - id
      - type
      - status
      - contract
      - quantity
      - worksheet
      - created_at
      - description
      - reported_by
      - total_amount
      - currency_code
      - date_submitted
      title: ContractsContractIdTimesheetsGetResponsesContentApplicationJsonSchemaDataItems
    TimesheetsGetParametersStatuses0:
      type: array
      items:
        $ref: '#/components/schemas/TimesheetsGetParametersStatusesSchemaOneOf0Items'
      title: TimesheetsGetParametersStatuses0
    timesheets_getTimesheetById_Response_200:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TimesheetsIdGetResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: timesheets_getTimesheetById_Response_200
    TimesheetsIdGetResponsesContentApplicationJsonSchemaDataHourlyReportPreset:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: unique identifier of the related timesheet preset
 

# --- truncated at 32 KB (55 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/deel/refs/heads/main/openapi/deel-subpackage-timesheets-api-openapi.yml