# tax\_code

From **Stripe API**.

[Tax codes](https://stripe.com/docs/tax/tax-codes) classify goods and services for tax purposes.

- Type: `object`

## Properties

### `description`

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

A detailed description of which types of products the tax code represents.

### `id`

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

Unique identifier for the object.

### `name`

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

A short name for the tax code.

### `object`

- Required: true
- Type: `string`
- Allowed values: `"tax_code"`

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

## JSON Schema

```json
{"description":"[Tax codes](https://stripe.com/docs/tax/tax-codes) classify goods and services for tax purposes.","properties":{"description":{"description":"A detailed description of which types of products the tax code represents.","maxLength":5000,"type":"string"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"name":{"description":"A short name for the tax code.","maxLength":5000,"type":"string"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["tax_code"],"type":"string"}},"required":["description","id","name","object"],"title":"TaxProductResourceTaxCode","type":"object","x-expandableFields":[],"x-resourceId":"tax_code"}
```
