sole proprietorshipunlimited liability

What is “T”?

T (sole trader, private business operator) is a sole proprietorship used primarily in Finland. It signals unlimited liability and private ownership.

Where it's used

T appears in company names registered in the following jurisdiction:

FI · Finland

What it tells you about the company

LiabilityMembers have unlimited personal liability for the entity's obligations.
OwnershipPrivately held. Shares are not listed or traded on a public exchange.
ComparableBroadly equivalent to EIRL in France, EK in Germany, EU in Germany.

Equivalent forms around the world

These are the closest structural equivalents to T in other jurisdictions — same entity category, different national law.

CountryEquivalent suffix
FranceEIRL
GermanyEK
GermanyEU
United KingdomSP
United StatesDBA

Normalizing “T” in your data

When matching or deduplicating company records, the legal suffix is noise — Acme T” and “Acme” should resolve to the same entity. One API call strips it and returns a stable canonical form:

Request
curl -X POST https://api.ambect.com/v1/normalize/company \
  -H "Authorization: Bearer $AMBECT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Acme T", "country": "fi"}'
Response
{
  "data": {
    "canonical": "acme t",
    "legal_type": null,
    "tokens": [
      "acme",
      "t"
    ]
  },
  "meta": {
    "pipeline": [
      "lowercase",
      "legal_suffix"
    ],
    "confidence": 0.99
  }
}

Frequently asked questions

What does T mean?

T means "sole trader, private business operator".

Is a T public or private?

A T is a private entity — its shares are not publicly listed or traded on a stock exchange.

What is the liability in a T?

Members of a T have unlimited personal liability — they can be held responsible for the entity's debts beyond their initial investment.

Which countries use T?

T is used in Finland.

Need to normalize T at scale? The Ambect API handles it across 100+ countries in under 5 ms.

Try the live normalizer free →