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
countryidfield in thepublic.gdata_master_country_applicable_taxtable references theidfield in thepublic.gdata_master_countrytable. This creates a foreign key relationship.- Description: Each tax entry in
public.gdata_master_country_applicable_taxis linked to a specific country in thepublic.gdata_master_countrytable. This means that for each tax, you can identify the country it applies to using this association.
- Description: Each tax entry in
Updated 8 months ago