Deel subpackage_projects API

The subpackage_projects API from Deel — 5 operation(s) for subpackage_projects.

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-projects-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-projects-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Endpoints subpackage_projects API
  version: 1.0.0
servers:
- url: https://api.letsdeel.com/rest/v2
- url: https://api-staging.letsdeel.com/rest/v2
tags:
- name: subpackage_projects
paths:
  /timesheets/presets:
    post:
      operationId: create-timesheets-preset
      summary: Create Hourly Report Preset
      description: "Create a new hourly report preset.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_projects
      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/Projects_createTimesheetsPreset_Response_201'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateHourlyReportPresetRequestBadRequestError'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateHourlyReportPresetRequestForbiddenError'
        '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/TimesheetsPresetsPostRequestBodyContentApplicationJsonSchemaData'
              required:
              - data
  /timesheets/root-presets:
    post:
      operationId: create-root-timesheets-preset
      summary: Create Hourly Report Root Preset
      description: "Create a new hourly report root preset.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_projects
      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:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Projects_createRootTimesheetsPreset_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateHourlyReportRootPresetRequestBadRequestError'
        '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:
                file:
                  type:
                  - string
                  - 'null'
                  format: binary
                  description: Optional file attachment for the root preset
                type:
                  $ref: '#/components/schemas/TimesheetsRootPresetsPostRequestBodyContentApplicationJsonSchemaType'
                  description: The type of preset, RATE – indicates a preset that overrides the default contract rate, TRACKING - used exclusively for tracking, applying the default contract rate
                title:
                  type: string
                  description: The title of the hourly report root preset (maximum 255 characters)
                description:
                  type: string
                  description: Detailed description of the root preset's purpose and usage (maximum 30000 characters)
                hourly_report_presets:
                  type: array
                  items:
                    $ref: '#/components/schemas/TimesheetsRootPresetsPostRequestBodyContentApplicationJsonSchemaHourlyReportPresetsItems'
                  description: Array of preset configurations to be created along with the root preset
                hourly_report_presets_processing_type:
                  $ref: '#/components/schemas/TimesheetsRootPresetsPostRequestBodyContentApplicationJsonSchemaHourlyReportPresetsProcessingType'
                  description: Determines whether presets should be processed synchronously or asynchronously
              required:
              - title
    get:
      operationId: get-hourly-report-root-presets
      summary: Get Hourly Report Root Presets
      description: "Retrieve a list of hourly report root presets.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_projects
      parameters:
      - name: limit
        in: query
        description: 'Maximum number of items to return per page (max: 100)'
        required: false
        schema:
          type: integer
          default: 10
      - name: order_by
        in: query
        description: Field to order the results by
        required: false
        schema:
          $ref: '#/components/schemas/TimesheetsRootPresetsGetParametersOrderBy'
      - name: order_direction
        in: query
        description: Direction to order the results (ascending or descending)
        required: false
        schema:
          $ref: '#/components/schemas/TimesheetsRootPresetsGetParametersOrderDirection'
      - name: work_statement_statuses
        in: query
        description: Filter results by work statement status
        required: false
        schema:
          type: array
          items:
            type: string
      - name: cursor
        in: query
        description: Pagination cursor for fetching the next page of results
        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/Projects_getHourlyReportRootPresets_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetHourlyReportRootPresetsRequestBadRequestError'
        '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/presets/{id}:
    delete:
      operationId: delete-timesheets-preset
      summary: Delete Hourly Report Preset
      description: "Delete an existing hourly report preset.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_projects
      parameters:
      - name: id
        in: path
        description: The unique identifier of the hourly report preset to delete
        required: true
        schema:
          type: string
          format: uuid
      - 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/Projects_deleteTimesheetsPreset_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteHourlyReportPresetRequestBadRequestError'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteHourlyReportPresetRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteHourlyReportPresetRequestNotFoundError'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
    get:
      operationId: get-timesheets-preset-by-id
      summary: Get Hourly Report Preset by ID
      description: "Retrieve a specific hourly report preset by its ID.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_projects
      parameters:
      - name: id
        in: path
        description: The unique identifier of the hourly report preset to retrieve
        required: true
        schema:
          type: string
          format: uuid
      - 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/Projects_getTimesheetsPresetById_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: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetHourlyReportPresetByIdRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetHourlyReportPresetByIdRequestNotFoundError'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
    patch:
      operationId: update-timesheets-preset
      summary: Update Hourly Report Preset
      description: "Update an existing hourly report preset.\n **Token scopes**: `timesheets:write`"
      tags:
      - subpackage_projects
      parameters:
      - name: id
        in: path
        description: The unique identifier of the hourly report preset to update
        required: true
        schema:
          type: string
          format: uuid
      - 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/Projects_updateTimesheetsPreset_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateHourlyReportPresetRequestBadRequestError'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateHourlyReportPresetRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateHourlyReportPresetRequestNotFoundError'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/TimesheetsPresetsIdPatchRequestBodyContentApplicationJsonSchemaData'
              required:
              - data
  /contracts/{contract_id}/timesheets/presets:
    get:
      operationId: get-contract-timesheets-presets
      summary: Get Hourly Report Presets
      description: "Retrieve hourly report presets for a given contract and work statement.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_projects
      parameters:
      - name: contract_id
        in: path
        description: ID of the Deel contract
        required: true
        schema:
          type: string
          format: uuid
      - name: work_statement_id
        in: query
        description: ID of the work statement (optional)
        required: false
        schema:
          type: string
          format: uuid
      - name: order_by
        in: query
        description: Field to order results by (title or created_at)
        required: false
        schema:
          type: string
          default: title
      - name: order_direction
        in: query
        description: Direction of ordering (ASC or DESC)
        required: false
        schema:
          type: string
          default: ASC
      - name: cursor
        in: query
        description: Pagination cursor for fetching next set of results
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Number of results to return per page
        required: false
        schema:
          type: integer
          default: 100
      - 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/Projects_getContractTimesheetsPresets_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetHourlyReportPresetsRequestBadRequestError'
        '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/root-presets/{id}:
    get:
      operationId: get-hourly-report-root-preset-by-id
      summary: Get Hourly Report Root Preset by ID
      description: "Retrieve a specific hourly report root preset by its ID.\n **Token scopes**: `timesheets:read`"
      tags:
      - subpackage_projects
      parameters:
      - name: id
        in: path
        description: The unique identifier of the hourly report root preset to retrieve
        required: true
        schema:
          type: string
          format: uuid
      - 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/Projects_getHourlyReportRootPresetById_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetHourlyReportRootPresetByIdRequestBadRequestError'
        '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: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetHourlyReportRootPresetByIdRequestNotFoundError'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
components:
  schemas:
    TimesheetsRootPresetsPostResponsesContentApplicationJsonSchemaDataAsyncTask:
      type: object
      properties:
        id:
          type: integer
          description: The identifier of the asynchronous task processing this request
      title: TimesheetsRootPresetsPostResponsesContentApplicationJsonSchemaDataAsyncTask
    ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportRootPresetType:
      type: string
      enum:
      - RATE
      - TRACKING
      description: The type of preset based on type of root preset
      title: ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportRootPresetType
    GetHourlyReportRootPresetByIdRequestNotFoundError:
      type: object
      properties:
        error:
          type: string
      title: GetHourlyReportRootPresetByIdRequestNotFoundError
    TimesheetsRootPresetsIdGetResponsesContentApplicationJsonSchemaDataFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        type:
          type: string
          description: The type of the file
      title: TimesheetsRootPresetsIdGetResponsesContentApplicationJsonSchemaDataFile
    GetHourlyReportPresetByIdRequestNotFoundError:
      type: object
      properties:
        error:
          type: string
      title: GetHourlyReportPresetByIdRequestNotFoundError
    GetHourlyReportRootPresetByIdRequestBadRequestError:
      type: object
      properties:
        error:
          type: string
      title: GetHourlyReportRootPresetByIdRequestBadRequestError
    TimesheetsPresetsIdGetResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier of the hourly report preset
        file:
          oneOf:
          - $ref: '#/components/schemas/TimesheetsPresetsIdGetResponsesContentApplicationJsonSchemaDataFile'
          - type: 'null'
        type:
          $ref: '#/components/schemas/TimesheetsPresetsIdGetResponsesContentApplicationJsonSchemaDataType'
          description: The type of preset based on type of root preset
        title:
          type: string
          description: The title of the hourly report preset
        status:
          type: string
          description: The current status of the hourly report preset
        description:
          type: string
          description: A detailed description of the hourly report preset
      required:
      - id
      - title
      - status
      - description
      title: TimesheetsPresetsIdGetResponsesContentApplicationJsonSchemaData
    TimesheetsRootPresetsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier of the hourly report root preset
        file:
          oneOf:
          - $ref: '#/components/schemas/TimesheetsRootPresetsGetResponsesContentApplicationJsonSchemaDataItemsFile'
          - type: 'null'
        type:
          $ref: '#/components/schemas/TimesheetsRootPresetsGetResponsesContentApplicationJsonSchemaDataItemsType'
          description: The type of preset, RATE – indicates a preset that overrides the default contract rate, TRACKING - used exclusively for tracking, applying the default contract rate
        title:
          type: string
          description: The title of the hourly report root preset
        description:
          type: string
          description: Detailed description of the hourly report root preset
        contracts_count:
          type: integer
          description: Number of contracts using this root preset
        hourly_report_presets_count:
          type: integer
          description: Number of hourly report presets created from this root preset
      required:
      - id
      - title
      - description
      - contracts_count
      - hourly_report_presets_count
      title: TimesheetsRootPresetsGetResponsesContentApplicationJsonSchemaDataItems
    ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier of the hourly report preset
        file:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItemsFile'
          - type: 'null'
        rate:
          type: number
          format: double
          description: The hourly rate for this preset
        title:
          type: string
          description: Title of the hourly report preset.
        description:
          type: string
          description: Detailed description of the hourly report preset
        hourly_report_root_preset:
          $ref: '#/components/schemas/ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportRootPreset'
      required:
      - id
      - rate
      - title
      - description
      - hourly_report_root_preset
      title: ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItems
    TimesheetsRootPresetsGetResponsesContentApplicationJsonSchemaDataItemsFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        type:
          type: string
          description: The type of the file
      title: TimesheetsRootPresetsGetResponsesContentApplicationJsonSchemaDataItemsFile
    TimesheetsPresetsIdPatchRequestBodyContentApplicationJsonSchemaData:
      type: object
      properties:
        file:
          type:
          - string
          - 'null'
          format: binary
          description: The file to be attached to this hourly report preset (optional)
        rate:
          type: number
          format: double
          description: The hourly rate for this preset (must be greater than 0)
        title:
          type: string
          description: The title of the hourly report preset (maximum 255 characters)
        description:
          type:
          - string
          - 'null'
          description: A detailed description of the hourly report preset's purpose and contents (maximum 30000 characters)
      title: TimesheetsPresetsIdPatchRequestBodyContentApplicationJsonSchemaData
    TimesheetsPresetsPostRequestBodyContentApplicationJsonSchemaData:
      type: object
      properties:
        file:
          type:
          - string
          - 'null'
          format: binary
          description: Optional file attachment for the hourly report preset
        rate:
          type: number
          format: double
          description: The hourly rate for this preset (must be greater than 0)
        title:
          type: string
          description: The title of the hourly report preset
        description:
          type:
          - string
          - 'null'
          description: A detailed description of the hourly report preset's purpose and contents
        work_statement_id:
          type: string
          format: uuid
          description: The unique identifier of the associated work statement
        hourly_report_root_preset_id:
          type: string
          format: uuid
          description: The unique identifier of the root preset this report is based on
      required:
      - work_statement_id
      - hourly_report_root_preset_id
      title: TimesheetsPresetsPostRequestBodyContentApplicationJsonSchemaData
    TimesheetsRootPresetsPostRequestBodyContentApplicationJsonSchemaHourlyReportPresetsItemsActionType:
      type: string
      enum:
      - ADD
      default: ADD
      description: The action to perform with this preset (currently only ADD is supported)
      title: TimesheetsRootPresetsPostRequestBodyContentApplicationJsonSchemaHourlyReportPresetsItemsActionType
    GetHourlyReportRootPresetsRequestBadRequestError:
      type: object
      properties:
        error:
          type: string
      title: GetHourlyReportRootPresetsRequestBadRequestError
    TimesheetsPresetsIdGetResponsesContentApplicationJsonSchemaDataFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        type:
          type: string
          description: The type of the file
      title: TimesheetsPresetsIdGetResponsesContentApplicationJsonSchemaDataFile
    GetHourlyReportPresetByIdRequestForbiddenError:
      type: object
      properties:
        error:
          type: string
      title: GetHourlyReportPresetByIdRequestForbiddenError
    ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportRootPresetFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        type:
          type: string
          description: The type of the file
      title: ContractsContractIdTimesheetsPresetsGetResponsesContentApplicationJsonSchemaDataItemsHourlyReportRootPresetFile
    Projects_updateTimesheetsPreset_Response_200:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TimesheetsPresetsIdPatchResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: Projects_updateTimesheetsPreset_Response_200
    CreateHourlyReportPresetRequestBadRequestError:
      type: object
      properties:
        error:
          type: string
      title: CreateHourlyReportPresetRequestBadRequestError
    TimesheetsPresetsIdPatchResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier of the updated hourly report preset
      required:
      - id
      title: TimesheetsPresetsIdPatchResponsesContentApplicationJsonSchemaData
    TimesheetsRootPresetsPostResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier of the created root preset
        async_task:
          $ref: '#/components/schemas/TimesheetsRootPresetsPostResponsesContentApplicationJsonSchemaDataAsyncTask'
      required:
      - id
      title: TimesheetsRootPresetsPostResponsesContentApplicationJsonSchemaData
    Projects_createTimesheetsPreset_Response_201:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TimesheetsPresetsPostResponsesContentApplication

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