# gelato\_id\_number\_report

From **Stripe API**.

Result from an id_number check

- Type: `object`

## Properties

### `dob`

- Required: false
- Nullable: true

Date of birth.

### `error`

- Required: false
- Nullable: true

Details on the verification error. Present when status is `unverified`.

### `first_name`

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

First name.

### `id_number`

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

ID number.

### `id_number_type`

- Required: false
- Type: `string`
- Nullable: true
- Allowed values: `"br_cpf"`, `"sg_nric"`, `"us_ssn"`

Type of ID number.

### `last_name`

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

Last name.

### `status`

- Required: true
- Type: `string`
- Allowed values: `"unverified"`, `"verified"`

Status of this `id_number` check.

## JSON Schema

```json
{"description":"Result from an id_number check","properties":{"dob":{"anyOf":[{"$ref":"#/components/schemas/gelato_data_id_number_report_date"}],"description":"Date of birth.","nullable":true},"error":{"anyOf":[{"$ref":"#/components/schemas/gelato_id_number_report_error"}],"description":"Details on the verification error. Present when status is `unverified`.","nullable":true},"first_name":{"description":"First name.","maxLength":5000,"nullable":true,"type":"string"},"id_number":{"description":"ID number.","maxLength":5000,"nullable":true,"type":"string"},"id_number_type":{"description":"Type of ID number.","enum":["br_cpf","sg_nric","us_ssn"],"nullable":true,"type":"string"},"last_name":{"description":"Last name.","maxLength":5000,"nullable":true,"type":"string"},"status":{"description":"Status of this `id_number` check.","enum":["unverified","verified"],"type":"string","x-stripeBypassValidation":true}},"required":["status"],"title":"GelatoIdNumberReport","type":"object","x-expandableFields":["dob","error"]}
```
