# issuing\_authorization\_verification\_data

From **Stripe API**.

- Type: `object`

## Properties

### `address_line1_check`

- Required: true
- Type: `string`
- Allowed values: `"match"`, `"mismatch"`, `"not_provided"`

Whether the cardholder provided an address first line and if it matched the cardholder’s `billing.address.line1`.

### `address_postal_code_check`

- Required: true
- Type: `string`
- Allowed values: `"match"`, `"mismatch"`, `"not_provided"`

Whether the cardholder provided a postal code and if it matched the cardholder’s `billing.address.postal_code`.

### `cvc_check`

- Required: true
- Type: `string`
- Allowed values: `"match"`, `"mismatch"`, `"not_provided"`

Whether the cardholder provided a CVC and if it matched Stripe’s record.

### `expiry_check`

- Required: true
- Type: `string`
- Allowed values: `"match"`, `"mismatch"`, `"not_provided"`

Whether the cardholder provided an expiry date and if it matched Stripe’s record.

## JSON Schema

```json
{"properties":{"address_line1_check":{"description":"Whether the cardholder provided an address first line and if it matched the cardholder’s `billing.address.line1`.","enum":["match","mismatch","not_provided"],"type":"string"},"address_postal_code_check":{"description":"Whether the cardholder provided a postal code and if it matched the cardholder’s `billing.address.postal_code`.","enum":["match","mismatch","not_provided"],"type":"string"},"cvc_check":{"description":"Whether the cardholder provided a CVC and if it matched Stripe’s record.","enum":["match","mismatch","not_provided"],"type":"string"},"expiry_check":{"description":"Whether the cardholder provided an expiry date and if it matched Stripe’s record.","enum":["match","mismatch","not_provided"],"type":"string"}},"required":["address_line1_check","address_postal_code_check","cvc_check","expiry_check"],"title":"IssuingAuthorizationVerificationData","type":"object","x-expandableFields":[]}
```
