Beneficiary
A beneficiary is a person, trust, or entity designated to receive assets when an account or policy owner dies. Designations apply to retirement accounts, life insurance policies, annuities, and transfer-on-death (TOD) brokerage accounts, and they override the owner's will for the assets they cover.
The will-vs-beneficiary precedence is the single most-misunderstood point in retail estate planning. A will directs assets that pass through probate; beneficiary designations direct assets that pass outside probate. A divorced retiree whose 401(k) names an ex-spouse as beneficiary will pass the 401(k) to the ex-spouse on death even if the will explicitly disinherits them. The will doesn't reach the 401(k) at all.
Designations come in three tiers: primary, contingent (alternate if all primaries predecease), and per-stirpes vs per-capita distribution rules for when a primary predeceases. Per-stirpes ('by the branch') passes a deceased primary's share to that primary's descendants; per-capita ('by the head') redistributes to surviving primaries. The default varies by custodian and the choice has real consequences when a child predeceases the parent leaving grandchildren.
For retirement accounts, beneficiary identity also drives post-death distribution rules. Spouse beneficiaries can roll into their own IRA and continue tax-deferred growth; non-spouse beneficiaries (since the SECURE Act) generally must drain inherited IRAs within 10 years; trust beneficiaries face complex 'see-through' rules to determine whether the trust qualifies as a designated beneficiary at all.
Test data needs realistic beneficiary trees on every retirement and insurance account: primary and contingent levels, mix of person/trust/charity entities, and deliberate edge cases like an ex-spouse still listed (the most common production-data quality issue), a contingent beneficiary who predeceased, and a trust beneficiary that fails the see-through test. Pre-spouse-death and post-spouse-death snapshots are different scenarios and both should be exercisable.
Common pitfalls
- Storing only primary beneficiaries — misses contingent-tree edge cases on unfortunate-sequence deaths.
- Not distinguishing per-stirpes from per-capita — the calculations differ when a beneficiary predeceased.
- Ignoring 'see-through trust' rules for trust beneficiaries — non-conforming trusts trigger 5-year drain instead of 10-year.
- Failing to update beneficiary on life events (divorce, remarriage, birth, death) — the single largest source of unintended estate outcomes.
Examples
Three-tier structure with per-stirpes default.
{
"primary": [
{ "type": "person", "name": "spouse", "share": 1.0 }
],
"contingent": [
{ "type": "person", "name": "child_1", "share": 0.5, "distribution": "per_stirpes" },
{ "type": "person", "name": "child_2", "share": 0.5, "distribution": "per_stirpes" }
]
}