> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AcceptorApplicationValidationError

> Represents a validation error on an acceptor application that is not specific to a single field.

`OBJECT`

Represents a validation error on an acceptor application that is not specific to a single field.

## Fields

<ResponseField name="message" type="String!" required>
  A helpful message describing the validation failure.
</ResponseField>

<ResponseField name="code" type="AcceptorApplicationValidationErrorCode!" required>
  A static code for tying the response back programmatically.

  <Expandable title="Possible enum values">
    <ResponseField name="INTERNAL_SERVER_ERROR" type="enum">
      An unexpected server error occurred while processing the application.
    </ResponseField>

    <ResponseField name="INVALID_OWNER" type="enum">
      The caller does not own the application or lacks permission to modify it.
    </ResponseField>

    <ResponseField name="INVALID_STATUS" type="enum">
      The application is in a state that does not permit this operation.
    </ResponseField>

    <ResponseField name="MISSING_GUARANTOR" type="enum">
      The application is missing a required guarantor.
    </ResponseField>

    <ResponseField name="MISSING_STAKEHOLDER" type="enum">
      The application is missing a required stakeholder with at least one role.
    </ResponseField>
  </Expandable>
</ResponseField>
