The OFAC 50 Percent Rule dictates that any entity owned 50 percent or more in the aggregate, directly or indirectly, by one or more blocked persons is considered blocked by operation of law—even if the entity itself is not explicitly listed on the Specially Designated Nationals (SDN) list.
1. The 50 Percent Rule Challenge
Determining 50% Rule status becomes complex when designated individuals split equity stakes across multiple corporate layers, holding trusts, and offshore jurisdictions such as the British Virgin Islands, Cyprus, or Panama.
KEY LEGAL DISTINCTION Unlike the European Union framework—which considers both ownership (50% threshold) OR control—OFAC strictly aggregates equity ownership percentage points across all blocked SDN parents. However, control without 50% ownership remains an elevated enforcement risk vector requiring enhanced due diligence (EDD).
2. Direct vs Indirect Ownership Aggregation
Consider Entity X, which is 30% owned by SDN Individual A, and 30% owned by Entity Y (which is 100% owned by SDN Individual B). Under OFAC rules:
- SDN Individual A holds 30% direct ownership in Entity X.
- SDN Individual B holds 30% indirect ownership in Entity X (30% * 100%).
- Aggregate SDN Ownership = 60%. Therefore, Entity X is automatically blocked!
3. Graph Traversal Algorithm Implementation
Below is a production Cypher/Graph algorithm for computing aggregated SDN exposure across N-tier entity relationships:
typescriptexport interface OwnershipNode { entityId: string; name: string; isSdnBlocked: boolean; equityPercentage: number; children: OwnershipNode[]; } export function computeAggregateSdnShare(node: OwnershipNode): number { if (node.isSdnBlocked) { return node.equityPercentage; } let aggregateSdnRatio = 0; for (const child of node.children) { const childSdnContribution = computeAggregateSdnShare(child); aggregateSdnRatio += (childSdnContribution * (child.equityPercentage / 100)); } return aggregateSdnRatio; }
4. Handling Trusts & Offshore Privacy Hiding
When unwinding trust structures where ultimate economic beneficiaries are masked behind nominee directors, automated screening algorithms must incorporate corporate registry API enrichment to continuously re-evaluate risk scores as ownership filings change.
Revised Guidance on Entities Owned by Persons Whose Property and Interests in Property are Blocked
U.S. Department of the Treasury (OFAC) • 2026
Technical architecture guides, API benchmark reports, and sub-millisecond screening research published by Sanctix Core Engineering.


