object

TaxComponent

Represents a detailed breakdown of a specific tax component applied to a transaction or item. This includes the type of tax, the rate at which it is applied, the calculated tax amount, and the base amount on which the tax is computed.
Fields
name
String
The name or type of the tax component (e.g., GST, VAT, Service Tax). This helps in identifying the specific tax being applied to the transaction or item.
rate
Float
The percentage rate at which the tax is applied to the taxable amount. Typically represented as a decimal (e.g., 0.18 for 18% tax).
tax_amount
Float
The total monetary value of the tax calculated for this component. This is derived by applying the tax rate to the taxable amount.
taxable_amount
Float
The base amount on which the tax is calculated, excluding the tax itself. This represents the value of goods or services before tax is applied.