Tax Categories and Schemes
Read about how to categorize tax and specify tax schemes in your documents.
Tax Categories
Tax Category is the name for the group of tax categorization information. Use the TaxCategory element to model this information.
Tax Schemes
A Tax Scheme is the name used to refer to tax programs such as Value Added Tax (VAT).
You use the TaxScheme element to model these.
If a party such as a Supplier or Customer is registered as a participant in the Tax Scheme, you must specify their Tax Scheme ID and the Scheme itself such as VAT.
VAT
The following example shows how to model VAT as the Tax Scheme:
<cac:TaxScheme>
<!-- Default value: VAT -->
<!-- MY tax type in "cac:ClassifiedTaxCategory\cbc:ID" -->
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
SEPA
The following example shows how to model SEPA as the Tax Scheme:
<cac:TaxScheme>
<!-- Default value: VAT -->
<!-- MY tax type in "cac:ClassifiedTaxCategory\cbc:ID" -->
<cbc:ID>SEPA</cbc:ID>
</cac:TaxScheme>
Elements
The TaxCategory element contains the following sub-elements, including the TaxScheme element:
Elements | Description |
---|---|
Invoice/TaxTotal/TaxSubtotal/TaxCategory/ID | The Tax Category ID. Use one of the allowed values. |
Invoice/TaxTotal/TaxSubtotal/TaxCategory/Percent | The tax rate for the category. |
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxExemptionReasonCode | Code that represents the reason for tax exemption. |
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxExemptionReason | A description of the reason for the exemption. |
Invoice/TaxTotal/TaxSubtotal/TaxCategory/TaxScheme/ID | The ID of the Tax Scheme. Use VAT . |
Country Specific Variations
Country specific variations are explained in the following topics:
- Malaysia: Tax Categories
- Sweden: Tax Categories (Line Level)
- Sweden: Tax Categories (Document Level)
Example
The following example is from a Malaysian credit note:
<cac:TaxTotal>
<cbc:TaxAmount currencyID="MYR">0.00</cbc:TaxAmount>
<cac:TaxSubtotal>
<cbc:TaxableAmount currencyID="MYR">6000.00</cbc:TaxableAmount>
<cbc:TaxAmount currencyID="MYR">0.00</cbc:TaxAmount>
<cac:TaxCategory>
<!-- MY Tax types code list: https://sdk.myinvois.hasil.gov.my/codes/tax-types/ (not UNCL5305 compliant) -->
<!-- MY original code: E - Tax exemption -->
<!-- expected code: MY:E - Tax exemption -->
<cbc:ID>VRBL:MY:E</cbc:ID>
<cbc:Percent>0.00</cbc:Percent>
<cbc:TaxExemptionReason>tax exemption reason free text description</cbc:TaxExemptionReason>
<cac:TaxScheme>
<!-- Default value: VAT -->
<!-- MY tax type in "cac:ClassifiedTaxCategory\cbc:ID" -->
<cbc:ID>VAT</cbc:ID>
</cac:TaxScheme>
</cac:TaxCategory>
</cac:TaxSubtotal>
</cac:TaxTotal>
Updated about 2 months ago