Deel subpackage_adjustments API

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

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-adjustments-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-adjustments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Endpoints subpackage_adjustments API
  version: 1.0.0
servers:
- url: https://api.letsdeel.com/rest/v2
- url: https://api-staging.letsdeel.com/rest/v2
tags:
- name: subpackage_adjustments
paths:
  /adjustments:
    post:
      operationId: create-contract-adjustment
      summary: Create a new adjustment
      description: "Generates a new adjustment entry attributed to a specific worker\n **Token scopes**: `adjustments:write`"
      tags:
      - subpackage_adjustments
      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/adjustments_createContractAdjustment_Response_201'
        '400':
          description: Bad Request – failed to create adjustments
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateANewAdjustment-v2026-01-01RequestBadRequestError'
        '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: Creation data for a new adjustment
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: File of adjustment.
                title:
                  type: string
                  description: Title of adjustment.
                amount:
                  $ref: '#/components/schemas/AdjustmentsPostRequestBodyContentMultipartFormDataSchemaAmount'
                  description: Amount of adjustment.
                vendor:
                  type: string
                  description: Vendor of adjustment.
                country:
                  type: string
                  description: Country code.
                contract_id:
                  type: string
                  description: The identifier of the contract associated with the adjustment
                description:
                  type: string
                  description: Description of adjustment.
                cycle_reference:
                  type: string
                  description: Cycle reference of adjustment.
                move_next_cycle:
                  type:
                  - boolean
                  - 'null'
                  description: If an adjustments can belong to another payroll cycle.
                date_of_adjustment:
                  type:
                  - string
                  - 'null'
                  format: date
                  description: 'Short date in format ISO-8601 (YYYY-MM-DD). For example: 2022-12-31.'
                adjustment_category_id:
                  type: string
                  description: Adjustment category id.
              required:
              - file
              - title
              - amount
              - vendor
              - country
              - contract_id
              - description
              - adjustment_category_id
  /adjustments/{id}:
    delete:
      operationId: delete-contract-adjustment
      summary: Delete an adjustment
      description: "Delete an adjustment.\n **Token scopes**: `adjustments:write`"
      tags:
      - subpackage_adjustments
      parameters:
      - name: id
        in: path
        description: Deel adjustment id.
        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/adjustments_deleteContractAdjustment_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'
    get:
      operationId: get-contract-adjustment
      summary: Retrieve an adjustment
      description: "Use this endpoint to retrieve details of a specific adjustment by its id. You can view its amount, status, dates, and related contract_id\n **Token scopes**: `adjustments:read`"
      tags:
      - subpackage_adjustments
      parameters:
      - name: id
        in: path
        description: Deel adjustment id.
        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/adjustments_getContractAdjustment_Response_200'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveAnAdjustmentRequestBadRequestError'
        '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-contract-adjustment
      summary: Update an adjustment
      description: "Update an adjustment.\n **Token scopes**: `adjustments:write`"
      tags:
      - subpackage_adjustments
      parameters:
      - name: id
        in: path
        description: Deel adjustment id.
        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/adjustments_updateContractAdjustment_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'
      requestBody:
        description: Adjustment object that needs to be updated
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/AdjustmentsIdPatchRequestBodyContentMultipartFormDataSchemaData'
                  description: Details of adjustment to update
              required:
              - data
  /contracts/{contract_id}/adjustments:
    get:
      operationId: get-contract-adjustments
      summary: Retrieve adjustments
      description: "Get all adjustments for the specific contract.\n **Token scopes**: `adjustments:read`"
      tags:
      - subpackage_adjustments
      parameters:
      - name: contract_id
        in: path
        description: Deel adjustment id.
        required: true
        schema:
          type: string
      - name: from
        in: query
        description: Filter adjustments by start date.
        required: false
        schema:
          type: string
          format: date
      - name: to
        in: query
        description: Filter adjustments by end date.
        required: false
        schema:
          type: string
          format: date
      - 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/adjustments_getContractAdjustments_Response_200'
        '400':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveAdjustmentsRequestBadRequestError'
        '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'
  /adjustments/categories:
    get:
      operationId: get-adjustment-categories
      summary: Retrieve categories
      description: "Get all categories for your organization.\n **Token scopes**: `adjustments:read`"
      tags:
      - subpackage_adjustments
      parameters:
      - name: contract_types
        in: query
        description: array of contract types to filter categories
        required: false
        schema:
          type: array
          items:
            $ref: '#/components/schemas/AdjustmentsCategoriesGetParametersContractTypesSchemaItems'
      - 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/adjustments_getAdjustmentCategories_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'
components:
  schemas:
    ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItemsFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        fileType:
          type: string
          description: The type of the file
      description: Info for the attachment of adjustment
      title: ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItemsFile
    adjustments_getAdjustmentCategories_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/AdjustmentsCategoriesGetResponsesContentApplicationJsonSchemaDataItems'
      required:
      - data
      title: adjustments_getAdjustmentCategories_Response_200
    AdjustmentsCategoriesGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of an adjustment category.
        name:
          type: string
          description: The name of the adjustment category.
        label:
          type: string
          description: The label of the adjustment category.
        unit_type:
          type: string
          description: The unit type of the adjustment category.
      title: AdjustmentsCategoriesGetResponsesContentApplicationJsonSchemaDataItems
    RetrieveAdjustmentsRequestBadRequestError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaErrorsItems'
      title: RetrieveAdjustmentsRequestBadRequestError
    AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus1:
      type: string
      enum:
      - DRAFT
      - PENDING
      - ERRORS_FOUND
      - APPROVED
      - DENIED
      - DISBURSE_SCHEDULED
      - REIMBURSED
      - UNDER_REVIEW
      - PENDING_DEEL_REVIEW
      description: Adjustment status (when contract type is EOR)
      title: AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus1
    AdjustmentsPostRequestBodyContentMultipartFormDataSchemaAmount:
      oneOf:
      - type: string
      - type: number
        format: double
      description: Amount of adjustment.
      title: AdjustmentsPostRequestBodyContentMultipartFormDataSchemaAmount
    CreateANewAdjustment-v2026-01-01RequestBadRequestError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/AdjustmentsPostResponsesContentApplicationJsonSchemaErrorsItems'
      required:
      - errors
      title: CreateANewAdjustment-v2026-01-01RequestBadRequestError
    ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the adjustment
        file:
          oneOf:
          - $ref: '#/components/schemas/ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItemsFile'
          - type: 'null'
          description: Info for the attachment of adjustment
        title:
          type: string
          description: The title of the adjustment
        amount:
          type: string
          description: The amount of the adjustment
        status:
          $ref: '#/components/schemas/ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItemsStatus'
          description: Adjustment status
        created_at:
          type: string
          format: date-time
          description: The date and time when the adjustment was created
        updated_at:
          type: string
          format: date-time
          description: The date and time when the adjustment was last updated
        contract_id:
          type: string
          description: The identifier of the contract associated with the adjustment
        description:
          type: string
          description: The description of the adjustment
        cycle_reference:
          type:
          - string
          - 'null'
          description: The reference to the cycle associated with the adjustment
        move_next_cycle:
          type: boolean
          description: If an adjustments can belong to another payroll cycle
        date_of_adjustment:
          type:
          - string
          - 'null'
          format: date-time
          description: The date of the adjustment
        actual_end_cycle_date:
          type: string
          description: The date of the actual end cycle date
        adjustment_category_id:
          type: string
          description: The identifier of the adjustment category associated with the adjustment
        actual_start_cycle_date:
          type: string
          description: The date of the actual start cycle date
      title: ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItems
    AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus:
      oneOf:
      - $ref: '#/components/schemas/AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus0'
      - $ref: '#/components/schemas/AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus1'
      description: The status of the adjustments
      title: AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus
    AdjustmentsIdGetResponsesContentApplicationJsonSchemaDataStatus:
      type: string
      enum:
      - open
      - pending_approval
      - overwritten
      - failed
      - success
      - DRAFT
      - PENDING
      - APPROVED
      - DENIED
      - DISBURSE_SCHEDULED
      - REIMBURSED
      - UNDER_REVIEW
      - ERRORS_FOUND
      - PENDING_DEEL_REVIEW
      - AI_CHECK_IN_PROGRESS
      description: Adjustment status
      title: AdjustmentsIdGetResponsesContentApplicationJsonSchemaDataStatus
    AdjustmentsPostResponsesContentApplicationJsonSchemaDataFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        fileType:
          type: string
          description: The type of the file
      description: '''Adjustment attachement'
      title: AdjustmentsPostResponsesContentApplicationJsonSchemaDataFile
    adjustments_updateContractAdjustment_Response_200:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AdjustmentsIdPatchResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: adjustments_updateContractAdjustment_Response_200
    adjustments_getContractAdjustment_Response_200:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AdjustmentsIdGetResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: adjustments_getContractAdjustment_Response_200
    AdjustmentsIdGetResponsesContentApplicationJsonSchemaDataFile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the file
        name:
          type: string
          description: The name of the file
        fileType:
          type: string
          description: The type of the file
      description: Info about the attachment of adjustment
      title: AdjustmentsIdGetResponsesContentApplicationJsonSchemaDataFile
    RetrieveAnAdjustmentRequestBadRequestError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/AdjustmentsIdGetResponsesContentApplicationJsonSchemaErrorsItems'
      title: RetrieveAnAdjustmentRequestBadRequestError
    AdjustmentsIdGetResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the adjustment
        file:
          oneOf:
          - $ref: '#/components/schemas/AdjustmentsIdGetResponsesContentApplicationJsonSchemaDataFile'
          - type: 'null'
          description: Info about the attachment of adjustment
        title:
          type: string
          description: The title of the adjustment
        amount:
          type: string
          description: The amount of the adjustment
        status:
          $ref: '#/components/schemas/AdjustmentsIdGetResponsesContentApplicationJsonSchemaDataStatus'
          description: Adjustment status
        created_at:
          type: string
          format: date-time
          description: The date and time when the adjustment was created
        updated_at:
          type: string
          format: date-time
          description: The date and time when the adjustment was last updated
        contract_id:
          type: string
          description: The identifier of the contract associated with the adjustment
        description:
          type: string
          description: The description of the adjustment
        cycle_reference:
          type:
          - string
          - 'null'
          description: The reference to the cycle associated with the adjustment
        move_next_cycle:
          type: boolean
          description: If an adjustments can belong to another payroll cycle
        date_of_adjustment:
          type: string
          format: date-time
          description: The date of the adjustment
        actual_end_cycle_date:
          type: string
          description: The date of the actual end cycle date
        adjustment_category_id:
          type: string
          description: The identifier of the adjustment category associated with the adjustment
        actual_start_cycle_date:
          type: string
          description: The date of the actual start cycle date
      title: AdjustmentsIdGetResponsesContentApplicationJsonSchemaData
    AdjustmentsIdDeleteResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        deleted:
          type: boolean
          description: Confirms the deletion.
      required:
      - deleted
      title: AdjustmentsIdDeleteResponsesContentApplicationJsonSchemaData
    AdjustmentsIdPatchRequestBodyContentMultipartFormDataSchemaData:
      type: object
      properties:
        file:
          type: string
          format: binary
          description: File of adjustment.
        title:
          type: string
          description: Title of adjustment.
        amount:
          $ref: '#/components/schemas/AdjustmentsIdPatchRequestBodyContentMultipartFormDataSchemaDataAmount'
          description: Amount of adjustment.
        description:
          type: string
          description: Description of adjustment.
      description: Details of adjustment to update
      title: AdjustmentsIdPatchRequestBodyContentMultipartFormDataSchemaData
    AdjustmentsCategoriesGetParametersContractTypesSchemaItems:
      type: string
      enum:
      - peo
      - global_payroll
      - hris_direct_employee
      - eor
      - employee
      - independent_contractor
      title: AdjustmentsCategoriesGetParametersContractTypesSchemaItems
    AdjustmentsPostResponsesContentApplicationJsonSchemaErrorsItems:
      type: object
      properties:
        message:
          type: string
      required:
      - message
      title: AdjustmentsPostResponsesContentApplicationJsonSchemaErrorsItems
    AdjustmentsIdGetResponsesContentApplicationJsonSchemaErrorsItems:
      type: object
      properties:
        message:
          type: string
          description: You must have access to the contract sent
      title: AdjustmentsIdGetResponsesContentApplicationJsonSchemaErrorsItems
    ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaErrorsItems:
      type: object
      properties:
        message:
          type: string
          description: You must have access to the contract sent
      title: ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaErrorsItems
    ApiError:
      type: object
      properties:
        message:
          type: string
          description: A description of the returned error
        path:
          type: string
          description: The JSON path where input validation failed
      title: ApiError
    adjustments_getContractAdjustments_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItems'
      required:
      - data
      title: adjustments_getContractAdjustments_Response_200
    adjustments_createContractAdjustment_Response_201:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AdjustmentsPostResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: adjustments_createContractAdjustment_Response_201
    ApiErrorContainer:
      type: object
      properties:
        request:
          $ref: '#/components/schemas/ApiErrorRequest'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ApiError'
      title: ApiErrorContainer
    ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItemsStatus:
      type: string
      enum:
      - open
      - pending_approval
      - overwritten
      - failed
      - success
      - DRAFT
      - PENDING
      - APPROVED
      - DENIED
      - DISBURSE_SCHEDULED
      - REIMBURSED
      - UNDER_REVIEW
      - ERRORS_FOUND
      - PENDING_DEEL_REVIEW
      - AI_CHECK_IN_PROGRESS
      description: Adjustment status
      title: ContractsContractIdAdjustmentsGetResponsesContentApplicationJsonSchemaDataItemsStatus
    AdjustmentsIdPatchResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        updated:
          type: boolean
      required:
      - updated
      title: AdjustmentsIdPatchResponsesContentApplicationJsonSchemaData
    adjustments_deleteContractAdjustment_Response_200:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AdjustmentsIdDeleteResponsesContentApplicationJsonSchemaData'
      required:
      - data
      title: adjustments_deleteContractAdjustment_Response_200
    AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus0:
      type: string
      enum:
      - OPEN
      - PENDING_APPROVAL
      - OVERWRITTEN
      - FAILED
      - SUCCESS
      - AI_CHECK_IN_PROGRESS
      description: Adjustment status (when contract type is GP)
      title: AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus0
    AdjustmentsPostResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the adjustment
        file:
          oneOf:
          - $ref: '#/components/schemas/AdjustmentsPostResponsesContentApplicationJsonSchemaDataFile'
          - type: 'null'
          description: '''Adjustment attachement'
        title:
          type: string
          description: The title of the adjustment
        amount:
          type: string
          description: The amount of the adjustment
        status:
          $ref: '#/components/schemas/AdjustmentsPostResponsesContentApplicationJsonSchemaDataStatus'
          description: The status of the adjustments
        created_at:
          type: string
          format: date-time
          description: The date and time when the adjustment was created
        updated_at:
          type: string
          format: date-time
          description: The date and time when the adjustment was last updated
        contract_id:
          type: string
          description: The identifier of the contract associated with the adjustment
        description:
          type: string
          description: The description of the adjustment
        cycle_reference:
          type:
          - string
          - 'null'
          description: The reference to the cycle associated with the adjustment
        move_next_cycle:
          type: boolean
          description: If an adjustments can belong to another payroll cycle
        date_of_adjustment:
          type: string
          format: date-time
          description: The date of the adjustment
        actual_end_cycle_date:
          type: string
          description: The date of the actual end cycle date
        adjustment_category_id:
          type: string
          description: The identifier of the adjustment category associated with the adjustment
        actual_start_cycle_date:
          type: string
          description: The date of th

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