# line\_items\_tax\_amount

From **Stripe API**.

- Type: `object`

## Properties

### `amount`

- Required: true
- Type: `integer`

Amount of tax applied for this rate.

### `rate`

- Required: true
- Type: `object`

Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax.

Related guide: [Tax Rates](https://stripe.com/docs/billing/taxes/tax-rates).

## JSON Schema

```json
{"properties":{"amount":{"description":"Amount of tax applied for this rate.","type":"integer"},"rate":{"$ref":"#/components/schemas/tax_rate"}},"required":["amount","rate"],"title":"LineItemsTaxAmount","type":"object","x-expandableFields":["rate"]}
```
