Singapore (Peppol): Tax Total

You can provide the total tax amount for Singapore invoices.

If the Document Currency is not SGD, a second cac:TaxTotal in SGD is mandatory.
The first group always provides a full breakdown, and all amounts are provided in the document currency cac:TaxTotal/TaxAmount/@currencyID = cbc:DocumentCurrencyCode.
The second group, if required, only provides the tax amount in SGD.

Elements

Name (Path)CardinalityDescription
Tax total (/Invoice/TaxTotal/)1..1The total TAX amount for the Invoice
Invoice total TAX amount (TaxAmount)1..1The total TAX amount for the Invoice.
Tax Subtotal (TaxSubtotal)1..nA group of business terms providing information about TAX breakdown by different categories, rates and exemption reasons
TAX category taxable amount (TaxSubtotal/TaxableAmount)1..1Sum of all taxable amounts subject to a specific TAX category code and TAX category rate (if the TAX category rate is applicable).
TAX category tax amount (TaxSubtotal/TaxAmount)1..1The total TAX amount for a given TAX category.
Tax Category (TaxSubtotal/TaxCategory)1..1Sum of all taxable amounts subject to a specific TAX category code and TAX category rate
Tax Category ID (TaxSubtotal/TaxCategory/ID)1..1Coded identification of a TAX category.
Percent (TaxSubtotal/TaxCategory/Percent)1..1The TAX rate, represented as percentage that applies for the relevant TAX category.
Tax Scheme ID (TaxSubtotal/TaxCategory/TaxScheme/ID)1..1The scheme of the TAX category.

In the case of Singaporean invoices, the code in cac:TaxSubtotal/cac:TaxCategory/cbc:ID depends on the type of invoice and the tax rate:

The Tax Scheme ID in element cac:TaxSubtotal/cac:TaxCategory/cac:TaxScheme/cbc:ID must contain the value GST.

Example

<!-- Invoice with foreign currency -->
<ubl:Invoice>
    <!-- Code omitted for clarity -->
    <cac:TaxTotal>
        <cbc:TaxAmount currencyID="USD">2539.35</cbc:TaxAmount> 
        <cac:TaxSubtotal>
            <cbc:TaxableAmount currencyID="USD">28215.00</cbc:TaxableAmount>
            <cbc:TaxAmount currencyID="USD">2539.35</cbc:TaxAmount> 
            <cac:TaxCategory>
                <cbc:ID>VRBL:SG:SR</cbc:ID> 
                <cbc:Percent>9</cbc:Percent> 
                <cac:TaxScheme>
                    <cbc:ID>GST</cbc:ID> 
                </cac:TaxScheme>
            </cac:TaxCategory>
        </cac:TaxSubtotal>
        <cac:TaxSubtotal>
            <cbc:TaxableAmount currencyID="USD">5700.00</cbc:TaxableAmount>
            <cbc:TaxAmount currencyID="USD">0</cbc:TaxAmount> 
            <cac:TaxCategory>
                <cbc:ID>VRBL:SG:ZR</cbc:ID>
                <cbc:Percent>0</cbc:Percent> 
                <cac:TaxScheme>
                    <cbc:ID>GST</cbc:ID> 
                </cac:TaxScheme>
            </cac:TaxCategory>
        </cac:TaxSubtotal>
    </cac:TaxTotal>
    <cac:TaxTotal>
        <cbc:TaxAmount currencyID="SGD">3428.12</cbc:TaxAmount> 
    </cac:TaxTotal>
</ubl:Invoice>