# legal\_entity\_person\_verification

From **Stripe API**.

- Type: `object`

## Properties

### `additional_document`

- Required: false
- Nullable: true

A document showing address, either a passport, local ID card, or utility bill from a well-known utility company.

### `details`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

A user-displayable string describing the verification state for the person. For example, this may say "Provided identity information could not be verified".

### `details_code`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

One of `document_address_mismatch`, `document_dob_mismatch`, `document_duplicate_type`, `document_id_number_mismatch`, `document_name_mismatch`, `document_nationality_mismatch`, `failed_keyed_identity`, or `failed_other`. A machine-readable code specifying the verification state for the person.

### `document`

- Required: false
- Type: `object`

### `status`

- Required: true
- Type: `string`
- maxLength: `5000`

The state of verification for the person. Possible values are `unverified`, `pending`, or `verified`.

## JSON Schema

```json
{"properties":{"additional_document":{"anyOf":[{"$ref":"#/components/schemas/legal_entity_person_verification_document"}],"description":"A document showing address, either a passport, local ID card, or utility bill from a well-known utility company.","nullable":true},"details":{"description":"A user-displayable string describing the verification state for the person. For example, this may say \"Provided identity information could not be verified\".","maxLength":5000,"nullable":true,"type":"string"},"details_code":{"description":"One of `document_address_mismatch`, `document_dob_mismatch`, `document_duplicate_type`, `document_id_number_mismatch`, `document_name_mismatch`, `document_nationality_mismatch`, `failed_keyed_identity`, or `failed_other`. A machine-readable code specifying the verification state for the person.","maxLength":5000,"nullable":true,"type":"string"},"document":{"$ref":"#/components/schemas/legal_entity_person_verification_document"},"status":{"description":"The state of verification for the person. Possible values are `unverified`, `pending`, or `verified`.","maxLength":5000,"type":"string"}},"required":["status"],"title":"LegalEntityPersonVerification","type":"object","x-expandableFields":["additional_document","document"]}
```
