Base Details

KeyValue
Tax Country CodePT
CurrencyEUR
Base Time ZoneEurope/Lisbon

Tax Categories

CodeNameTitle
VATVATValue Added Tax

VAT Rates

KeyNamePercentsDescription
standardStandard Rate16.0%
intermediateIntermediate Rate9.0%
reducedReduced Rate4.0%
exemptExempt
otherOther

Correction Definitions

Auto-generation of corrective invoices or credit and debit notes is supported.

Invoice Types

The types of invoices that can be created with a preceding definition:

  • credit-note
  • debit-note

Extensions

Region Code

SAF-T’s TaxCountryRegion (País ou região do imposto) specifies the region of taxation (Portugal mainland, Açores, Madeira or any ISO country) in a Portuguese invoice. Each region has their own tax rates which can be determined automatically.

To set the specific a region different to Portugal mainland, the pt-region extension of each line’s VAT tax should be set to one of the following values:

CodeDescription
PTMainland Portugal (default)
PT-ACAçores
PT-MAMadeira
Any ISO country code (e.g. ES, FR, DE, etc.)

For example:

{
	"$schema": "https://gobl.org/draft-0/bill/invoice",
	// ...
	"lines": [
		{
			// ...
			"item": {
				"name": "Some service",
				"price": "25.00"
			},
			"tax": [
				{
						"cat": "VAT",
						"rate": "exempt",
						"ext": {
							"pt-region": "PT-AC",
							// ...
						}
				}
			]
		}
	]
}