Withholding Taxes

Some tax can be withheld and you can model this for your Documents.

Use the WithholdingTaxTotal element to specify the total withheld tax.

Elements

ElementDescription
Invoice/WithholdingTaxTotal/TaxAmountThe total withheld tax amount.
Invoice/WithholdingTaxTotal/TaxSubtotal/TaxAmountWithheld tax amount of the current breakdown
Invoice/WithholdingTaxTotal/TaxSubtotal/TaxCategory/IDCategory and withholding tax code applied to the respective subtotal
Invoice/WithholdingTaxTotal/TaxSubtotal/TaxCategory/TaxScheme/IDTax SchemeID. See Tax Categories and Schemes.

Country Specific Elements

Example

<ubl:Invoice>
    <!-- Code omitted for clarity -->
    <cac:WithholdingTaxTotal>
        <cbc:TaxAmount currencyID="EUR">10.00</cbc:TaxAmount>
        <cac:TaxSubtotal>
            <cec:UBLExtensions>
                <cec:UBLExtension>
                    <cec:ExtensionContent>
                        <vrbl:WithholdingTaxSubtotalExtension>
                            <cbc:Description>Withholding tax description</cbc:Description>
                        </vrbl:WithholdingTaxSubtotalExtension>
                    </cec:ExtensionContent>
                </cec:UBLExtension>
            </cec:UBLExtensions>
            <cbc:TaxAmount currencyID="EUR">10.00</cbc:TaxAmount>
            <cac:TaxCategory>
                <cbc:ID>IFR</cbc:ID>
                <cac:TaxScheme>
                    <cbc:ID>VAT</cbc:ID>
                </cac:TaxScheme>
            </cac:TaxCategory>
        </cac:TaxSubtotal>
    </cac:WithholdingTaxTotal>
    <!-- Code omitted for clarity -->
</ubl:Invoice>