# Chapter 5.1.12 - Tax Bracket

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_rest_v2/reference/tax-bracket/

-   [Previous](/communications/dev-guide_rest_v2/reference/exemption/)
-   [Next](/communications/dev-guide_rest_v2/reference/key-value-pair/)

### Tax Bracket

The `TaxBracket` object allows the user to specify a list of **tax brackets** for an [override](/communications/dev-guide_rest_v2/reference/tax-override/):

Key

Value

`rate`

`[double]` required Tax Rate  

Tax rate for this tax bracket. The value cannot be negative. For rated taxes, the value must be between 0 and 1. Otherwise, the value may be greater than 1  

`rate`

`[double]` required Max Base  

The maximum base that this rate applies to. Use `2147483647` for "unlimited"  

### Example

```json
"brkt": [ { "rate": 0.075, "max": 2147483647 }]
```

-   [Previous](/communications/dev-guide_rest_v2/reference/exemption/)
-   [Next](/communications/dev-guide_rest_v2/reference/key-value-pair/)