TaxSubtotal

Use the Tax Subtotal object to model tax subtotals.

More information is provided in the Tax Amounts topic.

Details

DetailValue
NameTaxSubtotal
PathTaxSubtotal
DefinitionElement groups information about a tax subtotal.

Elements

ElementDescription
TaxSubtotal/TaxableAmount [@currencyID]The part of the amount that can be taxed.
TaxSubtotal/TaxAmount[@currencyID]The total amount of tax.
TaxSubtotal/TaxCategoryThe Tax Category. See Tax Categories and Schemes
TaxSubtotal/TaxCategory/IDThe ID of the applicable Tax Category.
TaxSubtotal/TaxCategory/PercentThe percentage tax rate for this category.
TaxSubtotal/TaxCategory/TaxScheme/IDThe identifier of the Tax Scheme.

Country Specific Configurations

Example

<ubl:Invoice>
    <!-- Code omitted for clarity -->
        <TaxSubtotal xmlns="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2">
            <cbc:TaxableAmount currencyID="RSD">302340</cbc:TaxableAmount>
            <cbc:TaxAmount currencyID="RSD">60468</cbc:TaxAmount>
            <TaxCategory>
                <cbc:ID>S</cbc:ID>
                <cbc:Percent>20</cbc:Percent>
                <TaxScheme>
                    <cbc:ID>VAT</cbc:ID>
                </TaxScheme>
            </TaxCategory>
        </TaxSubtotal>
    <!-- Code omitted for clarity -->
</ubl:Invoice>