Truework subpackage_reports API

The subpackage_reports API from Truework — 1 operation(s) for subpackage_reports.

OpenAPI Specification

truework-subpackage-reports-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Truework Qualifications & Tenant Properties API (Beta) subpackage_orders subpackage_reports API
  description: 'Public beta surfaces of the Truework API covering Qualification Checks (lightweight income/employment knockout decisions against a borrower''s verified employment data) and Tenant Properties (provider-defined verification configuration knobs). These endpoints are in public beta and the schema may evolve.

    '
  version: 2023-10-30-beta
  contact:
    name: Truework Implementations
    email: implementations@truework.com
    url: https://www.truework.com/docs
  license:
    name: Truework Terms of Service
    url: https://www.truework.com/legal/terms
servers:
- url: https://api.truework-sandbox.com
- url: https://api.truework.com
tags:
- name: subpackage_reports
paths:
  /reports/{verification_report_id}:
    get:
      operationId: get-report-details
      summary: Get one report
      description: 'Retrieves a report for a given report ID.

        If you don''t have the report id, it is recommended to use the embedded reports key on a completed verification object returned from `GET /orders`.

        You can get the report in PDF format by adding `Accept: application/pdf` to your headers. When testing, please use the generated curl command

        with `--output <PDF filename>` specified.


        <Info>

        Only completed Reports will be returned. Any other request will fail with either 400 or 404, and provide more information as an attached error message.

        </Info>

        '
      tags:
      - subpackage_reports
      parameters:
      - name: verification_report_id
        in: path
        description: Report ID
        required: true
        schema:
          type: string
      - name: include_income_analytics
        in: query
        description: Whether to calculate income analytics for the nested reports in each verification.
        required: false
        schema:
          type: boolean
          default: false
      - name: include_report_annotations
        in: query
        description: Whether to include annotations for the nested reports in each verification.
        required: false
        schema:
          type: boolean
          default: false
      - name: fields
        in: query
        description: Comma-separated names of fields to include in the response. Separate multiple fields with commas, and denote subfields with parentheses. Multiple subfields from the same type can be listed within parentheses. In case of a list, subfields apply to each individual object. If omitted, all fields are included.
        required: false
        schema:
          type:
          - string
          - 'null'
      - name: Authorization
        in: header
        description: 'Bearer tokens conform to the [RFC6750](https://datatracker.ietf.org/doc/html/rfc6750#section-2.1) spec.



          Production API keys (secret keys) are prefixed with `tw_sk_` and sandbox keys are prefixed with `tw_sk_test_`. If your secret key is published, you should rotate your API keys.


          Truework.JS publishable keys are prefixed with `tw_pk_` and `tw_pk_test` respectively.



          **Examples**

          - For Authorization Headers: `Authorization: Bearer tw_sk_test_e508eb797edb95ade85284bcb54dd49ed45db1be`

          - For the "try it now" `token` field, input only the token itself, omitting `Bearer `.'
        required: true
        schema:
          type: string
      - name: Accept
        in: header
        description: Specify the content type and version that the API should use. It's recommended to include this to avoid breaking changes.
        required: false
        schema:
          $ref: '#/components/schemas/ReportsVerificationReportIdGetParametersAccept'
          default: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderVerificationReportResourceV20231030'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error400'
        '401':
          description: The request's authorization is missing, invalid, or expired
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error401'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error404'
        '406':
          description: An invalid API version was requested
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error406'
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error429'
        '451':
          description: Frozen SSN
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error451'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error500'
        '501':
          description: Not Implemented
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error501'
components:
  schemas:
    PositionV20231030:
      type: object
      properties:
        employment_type:
          oneOf:
          - $ref: '#/components/schemas/EmploymentTypeOutputWrapperV20231030'
          - type: 'null'
        end_date:
          type:
          - string
          - 'null'
          format: date
        start_date:
          type:
          - string
          - 'null'
          format: date
        title:
          type:
          - string
          - 'null'
      required:
      - employment_type
      - end_date
      - start_date
      - title
      title: PositionV20231030
    PayFrequencyOutputWrapperV20231030:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/PayFrequencyOutputWrapperV20231030CanonicalValue'
          description: A limited enum representation of the value, which will not be extended without a version bump.
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: PayFrequencyOutputWrapperV20231030
    ApplicantDocumentMetadataV20220801:
      type: object
      properties:
        detections:
          type: array
          items:
            $ref: '#/components/schemas/DocumentDetection'
          description: A list of fraud detections that were run on the document. If a detection is not present in the list it either passed or was not run.
        id:
          type: string
        url:
          type: string
          format: uri
          description: A URL where the document content can be downloaded via an authenticated GET request.
      required:
      - detections
      - id
      - url
      title: ApplicantDocumentMetadataV20220801
    GrossIncomeCalculationResultV20231030:
      type: object
      properties:
        average_monthly_net_income:
          type:
          - number
          - 'null'
          format: double
        estimated_gross_annual:
          type:
          - number
          - 'null'
          format: double
        net_annual:
          type:
          - number
          - 'null'
          format: double
      required:
      - average_monthly_net_income
      - estimated_gross_annual
      - net_annual
      title: GrossIncomeCalculationResultV20231030
    DetectionOutcomeWrapper:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/DetectionOutcomeWrapperCanonicalValue'
          description: 'The outcome of the detection rule.


            | VALUE | DESCRIPTION |

            | ----- | ----------- |

            | passed | The detection rule passed. |

            | failed | The detection rule failed. |

            | not-run | The detection rule was not run. |

            | other | Another outcome occurred. |'
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: DetectionOutcomeWrapper
    AddressV20220801-Output:
      type: object
      properties:
        address:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        country_code:
          type:
          - string
          - 'null'
        country_subdivision_code:
          type:
          - string
          - 'null'
        extended_address:
          type:
          - string
          - 'null'
        postal_code:
          type:
          - string
          - 'null'
      required:
      - address
      - city
      - country_code
      - country_subdivision_code
      - extended_address
      - postal_code
      title: AddressV20220801-Output
    Error404:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
      - error
      title: Error404
    PayRateV20231030:
      type: object
      properties:
        amount:
          type:
          - string
          - 'null'
          description: The amount the employee gets paid per timeframe defined by the adject unit field.
        unit:
          oneOf:
          - $ref: '#/components/schemas/PayUnitOutputWrapperV20231030'
          - type: 'null'
          description: 'The timeframe in which the employee gets paid the amount defined in the adjacent amount field. '
      required:
      - amount
      - unit
      title: PayRateV20231030
    _EmployerAnnotation:
      type: object
      properties:
        email:
          type:
          - string
          - 'null'
          format: email
        name:
          type:
          - string
          - 'null'
        phone_number:
          type:
          - string
          - 'null'
      required:
      - email
      - name
      - phone_number
      title: _EmployerAnnotation
    EmployeeStatusOutputWrapperV20231030CanonicalValue:
      type: string
      enum:
      - active
      - inactive
      - unknown
      - furloughed-covid
      - non-employee
      - other
      description: 'There are five employment statuses available on the `status` field in

        `Employee`:


        | VALUE            | DESCRIPTION                                                         | VERSION INTRODUCED | OLDER VERSION VALUE |

        | ---------------- | ------------------------------------------------------------------- | ------------------ | ------------------- |

        | active           | The employee is currently employed and working for this employer    |                    |                     |

        | inactive         | The employee is not employed at this employer anymore               |                    |                     |

        | unknown          | Truework could not determine the employment status of this employee |                    |                     |

        | furloughed-covid | The employee was furloughed due to COVID-19                         | `2020-12-07`       | inactive            |

        | non-employee     | Truework could not find record of this employee                     | `2020-12-07`       | unknown             |

        | other | No other value describes the employee''s status | `2022-08-01` | N/A |'
      title: EmployeeStatusOutputWrapperV20231030CanonicalValue
    Error400:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/_InvalidRequestError'
      required:
      - error
      title: Error400
    FinancialInstitutionIncomeStreamPeriodV20231030:
      type: object
      properties:
        amount:
          type:
          - number
          - 'null'
          format: double
        amount_duration:
          type: string
        amount_type:
          type: string
        estimated_gross_income:
          oneOf:
          - $ref: '#/components/schemas/GrossIncomeCalculationResultV20231030'
          - type: 'null'
        id:
          type: string
        start_day:
          type: string
          format: date
      required:
      - amount
      - amount_duration
      - amount_type
      - estimated_gross_income
      - id
      - start_day
      title: FinancialInstitutionIncomeStreamPeriodV20231030
    PayFrequencyOutputWrapperV20231030CanonicalValue:
      type: string
      enum:
      - annually
      - daily
      - semiweekly
      - monthly
      - weekly
      - biweekly
      - bimonthly
      - semimonthly
      - quarterly
      - semiannually
      - thirteen-monthly
      - fourteen-monthly
      - hourly
      - variable
      - other
      description: A limited enum representation of the value, which will not be extended without a version bump.
      title: PayFrequencyOutputWrapperV20231030CanonicalValue
    MoneyAmountVMinimumVersion:
      type: object
      properties:
        amount:
          type:
          - string
          - 'null'
        currency:
          oneOf:
          - $ref: '#/components/schemas/CurrencyVMinimumVersion'
          - type: 'null'
      required:
      - amount
      - currency
      title: MoneyAmountVMinimumVersion
    DetectionOutcomeWrapperCanonicalValue:
      type: string
      enum:
      - passed
      - failed
      - not-run
      - other
      description: 'The outcome of the detection rule.


        | VALUE | DESCRIPTION |

        | ----- | ----------- |

        | passed | The detection rule passed. |

        | failed | The detection rule failed. |

        | not-run | The detection rule was not run. |

        | other | Another outcome occurred. |'
      title: DetectionOutcomeWrapperCanonicalValue
    FinancialInstitutionIncomeStreamV20231030:
      type: object
      properties:
        age_in_months:
          type:
          - integer
          - 'null'
        average_monthly_net_income:
          type:
          - number
          - 'null'
          format: double
        confidence:
          type: integer
        confidence_level:
          type: string
        end_date:
          type:
          - string
          - 'null'
          format: date
        estimated_gross_annual:
          type:
          - number
          - 'null'
          format: double
        frequency_days:
          type:
          - integer
          - 'null'
        id:
          type: string
        name:
          type: string
        net_annual:
          type:
          - number
          - 'null'
          format: double
        periods:
          type: array
          items:
            $ref: '#/components/schemas/FinancialInstitutionIncomeStreamPeriodV20231030'
        start_date:
          type:
          - string
          - 'null'
          format: date
        status:
          type: string
      required:
      - age_in_months
      - average_monthly_net_income
      - confidence
      - confidence_level
      - end_date
      - estimated_gross_annual
      - frequency_days
      - id
      - name
      - net_annual
      - periods
      - start_date
      - status
      title: FinancialInstitutionIncomeStreamV20231030
    GovernmentIdTypeOutputWrapperV20231030:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/GovernmentIdTypeOutputWrapperV20231030CanonicalValue'
          description: A limited enum representation of the value, which will not be extended without a version bump.
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: GovernmentIdTypeOutputWrapperV20231030
    PayUnitOutputWrapperV20231030:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/PayUnitOutputWrapperV20231030CanonicalValue'
          description: A limited enum representation of the value, which will not be extended without a version bump.
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: PayUnitOutputWrapperV20231030
    EligibilityTypeOutputWrapperV20231030CanonicalValue:
      type: string
      enum:
      - d1c
      - other
      description: A limited enum representation of the value, which will not be extended without a version bump.
      title: EligibilityTypeOutputWrapperV20231030CanonicalValue
    Error:
      type: object
      properties:
        message:
          type: string
      required:
      - message
      title: Error
    OrderVerificationReportResourceV20231030:
      type: object
      properties:
        additional_notes:
          type:
          - string
          - 'null'
        annotations:
          oneOf:
          - $ref: '#/components/schemas/OrderAnnotationsV20231030'
          - type: 'null'
          description: Consumer-stated information related to this report
        applicant_documents:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ApplicantDocumentMetadataV20220801'
        completed:
          type:
          - string
          - 'null'
          format: date-time
          description: The date and time when the verification was completed
        completed_by_method:
          oneOf:
          - $ref: '#/components/schemas/CompletedByMethodOutputWrapperV20231030'
          - type: 'null'
        created:
          type: string
          format: date-time
        current_as_of:
          type: string
          format: date
        disputes:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DisputeV20231030'
          description: Disputes that are currently open and relevant to this report
        eligibilities:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/EligibilityV20231030'
          description: Eligibilities for this report
        employee:
          oneOf:
          - $ref: '#/components/schemas/EmployeeV20231030'
          - type: 'null'
        employer:
          oneOf:
          - $ref: '#/components/schemas/EmployerV20231030'
          - type: 'null'
        financial_institution_accounts:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FinancialInstitutionAccountV20231030'
        id:
          type: string
        income_analytics:
          oneOf:
          - $ref: '#/components/schemas/ReportIncomeAnalyticsV20231030'
          - type: 'null'
          description: Calculated income features. Only returned if the `income_analytics` query parameter is provided and is `true` and the employee status on the report is active.
        paystubs:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PaystubV20231030'
          description: 'Individual paystubs for each pay period. Paystubs are returned sorted in descending order from most recent to least recent pay date. '
        respondent:
          oneOf:
          - $ref: '#/components/schemas/RespondentV20231030'
          - type: 'null'
        verification_request:
          $ref: '#/components/schemas/VerificationRequestV20231030'
      required:
      - additional_notes
      - annotations
      - applicant_documents
      - completed
      - completed_by_method
      - created
      - current_as_of
      - disputes
      - eligibilities
      - employee
      - employer
      - financial_institution_accounts
      - id
      - income_analytics
      - paystubs
      - respondent
      - verification_request
      title: OrderVerificationReportResourceV20231030
    Error403:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
      - error
      title: Error403
    _EmployeeAnnotation:
      type: object
      properties:
        positions:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/_PositionAnnotation'
        salary:
          oneOf:
          - $ref: '#/components/schemas/_SalaryAnnotation'
          - type: 'null'
        status:
          oneOf:
          - $ref: '#/components/schemas/EmployeeStatusOutputWrapperV20231030'
          - type: 'null'
        status_detail:
          oneOf:
          - $ref: '#/components/schemas/EmployeeStatusDetailOutputWrapperV20231030'
          - type: 'null'
      required:
      - positions
      - salary
      - status
      - status_detail
      title: _EmployeeAnnotation
    CompletedByMethodOutputWrapperV20231030:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/CompletedByMethodOutputWrapperV20231030CanonicalValue'
          description: A limited enum representation of the value, which will not be extended without a version bump.
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: CompletedByMethodOutputWrapperV20231030
    RespondentV20231030:
      type: object
      properties:
        email:
          type:
          - string
          - 'null'
        full_name:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
      required:
      - email
      - full_name
      - title
      title: RespondentV20231030
    _AnnualizedIncome:
      type: object
      properties:
        base_amount:
          oneOf:
          - $ref: '#/components/schemas/MoneyAmountVMinimumVersion'
          - type: 'null'
          description: Represents annualized income for recurring income, like salary. In rare cases due to data quality issues, gross amount is returned without base amount or vice versa.
        gross_amount:
          oneOf:
          - $ref: '#/components/schemas/MoneyAmountVMinimumVersion'
          - type: 'null'
          description: Represents base annualized income plus variable income sources. In rare cases due to data quality issues, gross amount is returned without base amount or vice versa.
        short_employment_warning:
          type: boolean
          description: True if the employee recently started at this position, which could impact annualized income accuracy.
        stale_data_warning:
          type: boolean
          description: True if the data on this report is not fresh, which could impact annualized income accuracy.
        variable_income_warning:
          type: boolean
          description: True if the employees income has high variability, which could impact annualized income accuracy.
      required:
      - base_amount
      - gross_amount
      - short_employment_warning
      - stale_data_warning
      - variable_income_warning
      title: _AnnualizedIncome
    SalaryV20231030:
      type: object
      properties:
        hours_per_week:
          type:
          - string
          - 'null'
        pay_frequency:
          oneOf:
          - $ref: '#/components/schemas/PayFrequencyOutputWrapperV20231030'
          - type: 'null'
          description: The frequency by which the employee is paid.
        pay_rate:
          oneOf:
          - $ref: '#/components/schemas/PayRateV20231030'
          - type: 'null'
          description: Describes the amount and unit that determine the employees pay.
        reduced_covid:
          $ref: '#/components/schemas/ReducedCovidVMinimumVersion'
      required:
      - hours_per_week
      - pay_frequency
      - pay_rate
      - reduced_covid
      title: SalaryV20231030
    _InvalidRequestError:
      type: object
      properties:
        message:
          type: string
          default: Invalid field values provided
      required:
      - message
      title: _InvalidRequestError
    EligibilityTypeOutputWrapperV20231030:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/EligibilityTypeOutputWrapperV20231030CanonicalValue'
          description: A limited enum representation of the value, which will not be extended without a version bump.
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: EligibilityTypeOutputWrapperV20231030
    CompletedByMethodOutputWrapperV20231030CanonicalValue:
      type: string
      enum:
      - instant
      - credentials
      - smart-outreach
      - third-party-providers
      - other
      description: A limited enum representation of the value, which will not be extended without a version bump.
      title: CompletedByMethodOutputWrapperV20231030CanonicalValue
    EmployerV20231030:
      type: object
      properties:
        address:
          oneOf:
          - $ref: '#/components/schemas/AddressV20220801-Output'
          - type: 'null'
        government_ids:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/_GovernmentId'
        name:
          type:
          - string
          - 'null'
      required:
      - address
      - government_ids
      - name
      title: EmployerV20231030
    EmploymentTypeOutputWrapperV20231030:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/EmploymentTypeOutputWrapperV20231030CanonicalValue'
          description: '| VALUE             | DESCRIPTION                      | VERSION INTRODUCED | OLDER VERSION VALUE |

            | ----------------- | -------------------------------- | ------------------ | ------------------- |

            | regular-full-time | Regular full time                |                    |                     |

            | regular-part-time | Regular part time                |                    |                     |

            | contractor-1099   | Contractor                       |                    |                     |

            | no-answer         | Question was not answered        | `2020-12-07`       | other               |

            | other             | Other or unknown employment type |                    |                     |'
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: EmploymentTypeOutputWrapperV20231030
    CurrencyVMinimumVersion:
      type: string
      enum:
      - USD
      title: CurrencyVMinimumVersion
    OrderAnnotationsV20231030:
      type: object
      properties:
        applicant:
          oneOf:
          - $ref: '#/components/schemas/_OrderAnnotation'
          - type: 'null'
        verifier:
          oneOf:
          - $ref: '#/components/schemas/_OrderAnnotation'
          - type: 'null'
      required:
      - applicant
      - verifier
      title: OrderAnnotationsV20231030
    VerificationRequestV20231030:
      type: object
      properties:
        created:
          type: string
          format: date-time
        id:
          type: string
        type:
          $ref: '#/components/schemas/VerificationTypeV20231030'
      required:
      - created
      - id
      - type
      title: VerificationRequestV20231030
    PayUnitOutputWrapperV20231030CanonicalValue:
      type: string
      enum:
      - annually
      - daily
      - semiweekly
      - monthly
      - weekly
      - biweekly
      - bimonthly
      - semimonthly
      - quarterly
      - semiannually
      - thirteen-monthly
      - fourteen-monthly
      - hourly
      - variable
      - other
      description: A limited enum representation of the value, which will not be extended without a version bump.
      title: PayUnitOutputWrapperV20231030CanonicalValue
    _OrderAnnotation:
      type: object
      properties:
        employee:
          oneOf:
          - $ref: '#/components/schemas/_EmployeeAnnotation'
          - type: 'null'
        employer:
          oneOf:
          - $ref: '#/components/schemas/_EmployerAnnotation'
          - type: 'null'
      required:
      - employee
      - employer
      title: _OrderAnnotation
    _SalaryAnnotation:
      type: object
      properties:
        pay_rate:
          oneOf:
          - $ref: '#/components/schemas/PayRateV20231030'
          - type: 'null'
      required:
      - pay_rate
      title: _SalaryAnnotation
    _GovernmentId:
      type: object
      properties:
        id:
          type: string
        type:
          $ref: '#/components/schemas/GovernmentIdTypeOutputWrapperV20231030'
      required:
      - id
      - type
      title: _GovernmentId
    DetectionTypeWrapper:
      type: object
      properties:
        canonical_value:
          $ref: '#/components/schemas/DetectionTypeWrapperCanonicalValue'
          description: 'The type of detection that was found on the document.


            | VALUE | DESCRIPTION |

            | ----- | ----------- |

            | ssn-mismatch | The SSN on the document does not match the SSN on the request. |

            | employer-name-mismatch | The employer name on the document may not match the employer name on the request. |

            | page-edited | The form may have been created by a recognized software package. |

            | other-edits | The form may have been edited with a recognized software package. |

            | online-generated-paystub | The pay stub format may match a template from sites known to create paystubs for a fee. |

            | earnings-edits | The listed earnings may have been edited. |

            | deductions-edits | Current or YTD deductions (including taxes) may have been edited. |

            | pay-frequency-edits | Pay frequency may have been edited. |

            | dollar-amount-edits | One or more of the following dollar amounts may have been changed: Beginning balance, Ending balance, Total deposits, Total withdrawals, Daily balance, Individual amounts, Ledger balances. |

            | employee-taxpayer-id-edits | The employee''s social security number may have been edited. |

            | employee-details-edits | The employee''s marital status may have been edited. |

            | employee-name-edits | The employee''s name may have been edited. |

            | employer-name-edits | The employer’s name may have been edited. |

            | employer-address-edits | The employer’s address may have been edited. |

            | date-edits | One or more of the following dates may have been edited (hire date, pay period, period start date, period end date). |

            | misaligned-text | The field or text may not match the expected alignment compared to the rest of the document. |

            | other | Something else was detected. |'
        raw_value:
          type: string
          description: An unlimited string representation of the value, which may provide more detail when the canonical value is "other".
      required:
      - canonical_value
      - raw_value
      title: DetectionTypeWrapper
    DisputeV20231030:
      type: object
      properties:
        created:
          type: string
          format: date-time
        description:
          type:
          - string
          - 'null'
          description: Description of dispute
        id:
          type: string
          description: ID for this di

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