# issuing\_dispute\_other\_evidence

From **Stripe API**.

- Type: `object`

## Properties

### `additional_documentation`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.

### `explanation`

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

Explanation of why the cardholder is disputing this transaction.

### `product_description`

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

Description of the merchandise or service that was purchased.

### `product_type`

- Required: false
- Type: `string`
- Nullable: true
- Allowed values: `"merchandise"`, `"service"`

Whether the product was a merchandise or service.

## JSON Schema

```json
{"properties":{"additional_documentation":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"explanation":{"description":"Explanation of why the cardholder is disputing this transaction.","maxLength":5000,"nullable":true,"type":"string"},"product_description":{"description":"Description of the merchandise or service that was purchased.","maxLength":5000,"nullable":true,"type":"string"},"product_type":{"description":"Whether the product was a merchandise or service.","enum":["merchandise","service"],"nullable":true,"type":"string"}},"title":"IssuingDisputeOtherEvidence","type":"object","x-expandableFields":["additional_documentation"]}
```
