Australia (Peppol): Document Level Taxes

You can specify Taxes at the Document level in your Australia documents.

In the case of Australian invoices, the code in TaxSubtotal/TaxCategory/ID must belong to the Aligned Tax Category codes list:

CodeDescription
EExempt from tax
GFree export item, tax not charged
OOutside scope of tax
SStandard rate
ZZero rated goods

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

Regarding the Tax Rate:

  • If the Tax Category code in :TaxSubtotal/TaxCategory/ID is E (exempt from tax), then the Tax Rate in TaxCategory/Percent must be 0.
  • If the Tax Category code in TaxSubtotal/TaxCategory/ID is G (export), then the Tax Rate in TaxCategory/Percent must be 0.
  • If the Tax Category code in :TaxSubtotal/TaxCategory/ID is S (standard rate), then the Tax Rate in TaxCategory/Percent must be greater than 0.
  • If the Tax Category code in TaxSubtotal/TaxCategory/ID is Z (zero rated), then the Tax Rate in TaxCategory/Percent must be 0.
  • If the Tax Category code in TaxSubtotal/TaxCategory/ID is O (not subject to tax), then the TaxCategory/Percent must not be sent.

Example


<!-- Standard rate Tax Category -->
<Invoice>
	<!-- Code omitted for clarity -->
	<cac:TaxTotal>
		<!-- Code omitted for clarity -->
		<cac:TaxSubtotal>
			<cbc:TaxableAmount currencyID="AUD">1527.40</cbc:TaxableAmount>
			<cbc:TaxAmount currencyID="AUD">152.74</cbc:TaxAmount>
			<cac:TaxCategory>
				<cbc:ID>S</cbc:ID>
				<cbc:Percent>10</cbc:Percent>
				<cac:TaxScheme>
					<cbc:ID>GST</cbc:ID>
				</cac:TaxScheme>
			</cac:TaxCategory>
		</cac:TaxSubtotal>
		<!-- Code omitted for clarity -->		
	</cac:TaxTotal>
	<!-- Code omitted for clarity -->    		
</Invoice>


<!-- Not subject to tax -->
<Invoice>
	<!-- Code omitted for clarity -->
	<cac:TaxTotal>
		<!-- Code omitted for clarity -->
		<cac:TaxSubtotal>
			<cbc:TaxableAmount currencyID="AUD">1527.40</cbc:TaxableAmount>
			<cbc:TaxAmount currencyID="AUD">0.00</cbc:TaxAmount>
			<cac:TaxCategory>
				<cbc:ID>O</cbc:ID>
				<cac:TaxScheme>
					<cbc:ID>GST</cbc:ID>
				</cac:TaxScheme>
			</cac:TaxCategory>
		</cac:TaxSubtotal>
		<!-- Code omitted for clarity -->		
	</cac:TaxTotal>
	<!-- Code omitted for clarity -->    		
</Invoice>