TaxCategory

Use this element to specify Tax Category information.

More information is provided in the Tax Categories and Schemes topic. Use this element to model a Tax Category.

Details

FieldValue
DescriptionTaxCategory
Document-Level PathInvoice/TaxTotal/TaxSubtotal/TaxCategory
Line-Level PathInvoice/InvoiceLine/TaxTotal/TaxSubtotal/TaxCategory
DefinitionThis element groups tax categorization information.

Elements

ElementsDescription
Invoice/TaxTotal/TaxSubtotal/TaxCategory/IDThe Tax Category ID. Use one of the allowed values.
Invoice/TaxTotal/TaxSubtotal/TaxCategory/PercentThe tax rate for the category.
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxExemptionReasonCodeCode that represents the reason for tax exemption.
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxExemptionReasonA description of the reason for the exemption.
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxScheme/IDThe ID of the Tax Scheme. Use VAT.

Country Specific Configurations

Example

<ubl:Invoice>
    <!-- Code omitted for clarity -->
        <cac:TaxSubtotal>
            <cbc:TaxableAmount currencyID="EUR">400</cbc:TaxableAmount>
            <cbc:TaxAmount currencyID="EUR">100</cbc:TaxAmount>
            <cac:TaxCategory>
                <cbc:ID>E</cbc:ID>
                <cbc:Percent>0.00</cbc:Percent>
                <cbc:TaxExemptionReasonCode>VRBL:PT:M99</cbc:TaxExemptionReasonCode>
                <cbc:TaxExemptionReason>Exempt or not subject</cbc:TaxExemptionReason>
                <cac:TaxScheme>
                    <cbc:ID>VAT</cbc:ID>
                </cac:TaxScheme>
            </cac:TaxCategory>
        </cac:TaxSubtotal>
    <!-- Code omitted for clarity -->
</ubl:Invoice>