# Order Tax Line
The `order_tax_line` object describes a tax line applied to an order.
## Usage Example
```liquid
{%- comment -%} List all tax lines for an order {%- endcomment -%}
{% for tax in order.tax_lines %}
- {{ tax.title }}: {{ tax.amount }}
{% endfor %}
```
## Properties
### amount
Returns the tax amount.
### id
Returns the unique id for this tax line.
### rate
Returns the tax rate (as a decimal or percentage).
### title
Returns the title or description of the tax line.