The global operating system for company formation and management. 28 legal structures. 12 operating models. Every jurisdiction.
Every company formation platform assumes you're incorporating a C-Corp in Delaware. The real world is vastly more complex.
stateOfIncorporation hard-coded as a US state enum.JurisdictionPresence as a first-class concept. No US-centric assumptions.Object.Every organization in Mass is defined by two independent dimensions: what it is legally, and how it operates. The intersection creates a precise, machine-readable identity.
Not a feature list. A coordinate system for the entire global corporate landscape.
No JSONB. No Map<String, Object>. Every legal structure is a sealed interface with its own Postgres table and compile-time validation.
Most platforms store company data as untyped JSON blobs. Seems flexible. Until you need to query it, validate it, migrate it, or trust it.
"companyData": {
"type": "llc",
"state": "delaware",
"misc": { ... } // anything goes
}
Each legal structure is its own type. The compiler enforces correctness. Jackson handles polymorphism. Flyway manages the schema.
sealed interface IncorporatedAs
permits DelawareLLC, CaymanExempted,
BviBc, SingaporePteLtd,
GermanGmbH, UaeFze // ... 22 more
Four steps. Two minutes. No refactoring.
IncorporatedAsType enum.@JsonSubTypes entry. Polymorphic serialization works automatically.CREATE TABLE for the new type. Clean, queryable, indexed.When an LLM, blockchain node, or compliance engine queries an organization, it gets a self-describing, unambiguous response. No interpretation needed.
Cayman PE Fund
Singapore VC Fund
UAE Family Office
No stateOfIncorporation. No US-centric assumptions. JurisdictionPresence is the source of truth: where you're incorporated, where you operate, where your agents are.
Where the entity is legally domiciled. Determines governing law, corporate registry, and tax residency.
Where the entity conducts business. Determines filing obligations, employment law, and local compliance.
Where a local representative accepts service of process. Required in most offshore and free zone jurisdictions.
Every change is an event. Who changed it, when, what the previous value was, and which board consent authorized it. Event-sourced from day one.
Board Appointment Lifecycle
Organization-info doesn't try to do everything. It defines the entity. Other services handle what the entity does.
The Smart Asset model was designed to be portable. What lives in Postgres today is ready for the chain tomorrow.
Organization records as on-chain primitives. The sealed type hierarchy maps directly to smart contract types. Same data model, immutable ledger.
Jurisdiction-specific rules encoded as composable policies. When you incorporate in Cayman, the compliance requirements auto-configure. No manual checklists.
Board consents, share issuances, and ownership transfers as verifiable on-chain events. Transparent to regulators. Trustless for counterparties.
We model the real world precisely.
Every company type. Every jurisdiction. Every governance event. Infrastructure that governments trust and machines understand.