Tax Classifications

Includes dropdown values for fields related to Tax Classifications

taxClassificationUS

var taxClassificationCodesUS = []CodeValue{
	{Code: "C_CORP", Text: "C Corporation"},
	{Code: "LLC_C_CORP", Text: "LLC - C Corporation"},
	{Code: "LLC_PARTNERSHIP", Text: "LLC - Partnership"},
	{Code: "LLC_S_CORP", Text: "LLC - S Corporation"},
	{Code: "PARTNERSHIP", Text: "Partnership"},
	{Code: "S_CORP", Text: "S Corporation"},
	{Code: "TRUST_ESTATE", Text: "Trust/Estate"},
	{Code: "OTHER", Text: "Other"},
}

taxClassificationNonUS

var taxClassificationCodesNonUS = []CodeValue{
	{Code: "CENTRAL_BANK", Text: "Central bank of issue"},
	{Code: "COMPLEX_TRUST", Text: "Complex trust"},
	{Code: "CORP", Text: "Corporation"},
	{Code: "DISREGARDED_ENTITY", Text: "Disregarded entity"},
	{Code: "ESTATE", Text: "Estate"},
	{Code: "FOREIGN_GOVERNMENT_CONTROLLED_ENTITY", Text: "Foreign government – controlled entity"},
	{Code: "FOREIGN_GOVERNMENT_INTEGRAL_PART", Text: "Foreign government – integral part"},
	{Code: "GRANTOR_TRUST", Text: "Grantor trust"},
	{Code: "INTERNATIONAL_ORGANIZATION", Text: "International organization"},
	{Code: "PARTNERSHIP", Text: "Partnership"},
	{Code: "PRIVATE_FOUNDATION", Text: "Private foundation"},
	{Code: "SIMPLE_TRUST", Text: "Simple trust"},
	{Code: "TAX_EXEMPT_ORGANIZATION", Text: "Tax-exempt organization"},
}

Did this page help you?