CountryApplicableTax
Type | Table |
---|---|
CountryApplicableTax | gdata_master_country_applicable_tax |
List of tax information applicable to a country.
Field Name | Data Type | Description |
---|---|---|
id | varchar(255) | Unique identifier for the tax entry. |
tags | varchar(255) | Tags associated with the tax. |
taxid | varchar(255) | Identifier for the specific tax. |
value | float8 | The percentage or fixed value of the tax. |
countryid | varchar(255) | Identifier for the country to which the tax applies. |
Associations
- The
countryid
field in thepublic.gdata_master_country_applicable_tax
table references theid
field in thepublic.gdata_master_country
table. This creates a foreign key relationship.- Description: Each tax entry in
public.gdata_master_country_applicable_tax
is linked to a specific country in thepublic.gdata_master_country
table. This means that for each tax, you can identify the country it applies to using this association.
- Description: Each tax entry in
Updated about 1 year ago