# tax_line
## Description
Represents information about a tax line of a checkout or order.
## Properties
| Property | Type | Description |
|----------|------|-------------|
| `price` | number | "The tax amount in the currency's subunit." The customer's local currency is used. For currencies without subunits (JPY, KRW), tenths and hundredths are appended—1000 Japanese yen displays as 100000. Apply money filters for formatted output. |
| `rate` | number | "The decimal value of the tax rate." |
| `rate_percentage` | number | "The decimal value of the tax rate, as a percentage." |
| `title` | string | "The title of the tax." |
## Example
```json
{
"price": 1901,
"rate": 0.05,
"rate_percentage": 5,
"title": "GST"
}
```