# identity.verification\_report

From **Stripe API**.

A VerificationReport is the result of an attempt to collect and verify data from a user.
The collection of verification checks performed is determined from the `type` and `options`
parameters used. You can find the result of each verification check performed in the
appropriate sub-resource: `document`, `id_number`, `selfie`.

Each VerificationReport contains a copy of any data collected by the user as well as
reference IDs which can be used to access collected images through the [FileUpload](https://stripe.com/docs/api/files)
API. To configure and create VerificationReports, use the
[VerificationSession](https://stripe.com/docs/api/identity/verification_sessions) API.

Related guides: [Accessing verification results](https://stripe.com/docs/identity/verification-sessions#results).

- Type: `object`

## Properties

### `created`

- Required: true
- Type: `integer`
- Format: `unix-time`

Time at which the object was created. Measured in seconds since the Unix epoch.

### `document`

- Required: false
- Type: `object`

Result from a document check

### `id`

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

Unique identifier for the object.

### `id_number`

- Required: false
- Type: `object`

Result from an id_number check

### `livemode`

- Required: true
- Type: `boolean`

Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

### `object`

- Required: true
- Type: `string`
- Allowed values: `"identity.verification_report"`

String representing the object's type. Objects of the same type share the same value.

### `options`

- Required: true
- Type: `object`

### `selfie`

- Required: false
- Type: `object`

Result from a selfie check

### `type`

- Required: true
- Type: `string`
- Allowed values: `"document"`, `"id_number"`

Type of report.

### `verification_session`

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

ID of the VerificationSession that created this report.

## JSON Schema

```json
{"description":"A VerificationReport is the result of an attempt to collect and verify data from a user.\nThe collection of verification checks performed is determined from the `type` and `options`\nparameters used. You can find the result of each verification check performed in the\nappropriate sub-resource: `document`, `id_number`, `selfie`.\n\nEach VerificationReport contains a copy of any data collected by the user as well as\nreference IDs which can be used to access collected images through the [FileUpload](https://stripe.com/docs/api/files)\nAPI. To configure and create VerificationReports, use the\n[VerificationSession](https://stripe.com/docs/api/identity/verification_sessions) API.\n\nRelated guides: [Accessing verification results](https://stripe.com/docs/identity/verification-sessions#results).","properties":{"created":{"description":"Time at which the object was created. Measured in seconds since the Unix epoch.","format":"unix-time","type":"integer"},"document":{"$ref":"#/components/schemas/gelato_document_report"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"id_number":{"$ref":"#/components/schemas/gelato_id_number_report"},"livemode":{"description":"Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.","type":"boolean"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["identity.verification_report"],"type":"string"},"options":{"$ref":"#/components/schemas/gelato_verification_report_options"},"selfie":{"$ref":"#/components/schemas/gelato_selfie_report"},"type":{"description":"Type of report.","enum":["document","id_number"],"type":"string","x-stripeBypassValidation":true},"verification_session":{"description":"ID of the VerificationSession that created this report.","maxLength":5000,"nullable":true,"type":"string"}},"required":["created","id","livemode","object","options","type"],"title":"GelatoVerificationReport","type":"object","x-expandableFields":["document","id_number","options","selfie"],"x-resourceId":"identity.verification_report"}
```
