> ## 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.

# AcceptorApplicationStakeholderFieldValidationError

> Represents a field-level validation error on a stakeholder within an acceptor application.

`OBJECT`

Represents a field-level validation error on a stakeholder within an acceptor application.

## Fields

<ResponseField name="message" type="String!" required>
  A helpful message describing how to fix the invalid value.
</ResponseField>

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

  <Expandable title="Possible enum values">
    <ResponseField name="FIELD_TOO_LONG" type="enum">
      A field value exceeds the maximum allowed length.
    </ResponseField>

    <ResponseField name="INVALID_FIELD" type="enum">
      The field value does not meet the required format or constraints.
    </ResponseField>

    <ResponseField name="INVALID_TELEPHONE_NUMBER" type="enum">
      The stakeholder's telephone number is invalid. It must be a valid phone number containing only digits, with optional dashes, dots, or spaces.
    </ResponseField>

    <ResponseField name="MISSING_FIELD" type="enum">
      A required field was not provided.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="field" type="String!" required>
  The name of the field that failed validation.
</ResponseField>

<ResponseField name="stakeholderId" type="UUID!" required>
  The ID of the stakeholder whose field failed validation.
</ResponseField>
