wealthschemaresourcesarticlesNQDC and §409A deferred-comp modeling
Article

NQDC and §409A deferred-comp modeling

An NQDC plan is not a 401(k) without a contribution limit. It's an employer promise-to-pay with rigid distribution timing, no creditor protection, and a tax regime designed to make changes punitive.

WealthSchema StaffExecutive compensation modelingMay 9, 20264 min read

A non-qualified deferred compensation (NQDC) arrangement is the senior-executive answer to the qualified-plan contribution limits. An NQDC plan lets an executive defer salary, bonus, or equity-comp gains beyond the IRC §402(g) limits ($23,500 in 2025) and §415 limits ($70,000 in 2025) that constrain qualified plans. The deferred amounts grow on a tax-deferred basis. The trade-off is a set of constraints under IRC §409A that make NQDC qualitatively different from a 401(k) — distribution elections lock years in advance, the assets remain at risk to the employer's general creditors, and changes to the schedule trigger 20%+ penalty taxes plus interest.

For wealth-tech platforms whose customers include senior executives, NQDC is non-trivial to model and easy to underhandle. This article is the data shape NQDC-aware test corpora need: the §409A distribution-election rules, the employer-creditor-risk modeling, the SERP (Supplemental Executive Retirement Plan) overlay, and the synthetic data shapes that exercise each.

What makes NQDC different from a 401(k)

Three structural differences from a qualified plan make NQDC a different modeling problem:

 PropertyQualified plan (401(k))NQDC
Contribution limit§402(g) + §415 limitsPlan-defined; can be unlimited
Asset ownershipHeld in trust for employee benefitRemains employer's property; subject to general creditors
Distribution timingLargely flexible after termination/age 59½Locked by §409A election made at deferral
Penalty for change10% on early withdrawal only20% + interest on §409A failure
Tax treatment of growthTax-deferred (or tax-free for Roth)Tax-deferred
Distribution event flexibilityMany triggersLimited to §409A-qualifying events

The §409A locking is the part most platforms underhandle. An executive electing to defer 50% of their 2025 bonus into an NQDC plan must also elect, at the time of deferral, when the deferral will be paid out — typically a specific year (e.g., 2035), at separation from service, at retirement, at death/disability, or at a §409A-qualifying change-in-control. The election is essentially irrevocable. Subsequent changes face the §409A "later-and-not-soon" rule: any change must defer the original payment by at least 5 years, and the new election must be made at least 12 months in advance.

// NQDC plan with deferral and distribution elections
{
  "plan_id": "NQDC-2025-EMPLOYER-001",
  "plan_type": "elective_deferral",
  "employer": "MegaCorp Inc",
  "employee_id": "E-CFO-2020",
  "deferral_history": [
    {
      "deferral_year": 2021,
      "deferral_source": "annual_bonus",
      "deferral_amount": 250000.00,
      "distribution_election": {
        "trigger": "specific_year",
        "year": 2031,
        "form": "lump_sum"
      }
    },
    {
      "deferral_year": 2022,
      "deferral_source": "annual_bonus",
      "deferral_amount": 300000.00,
      "distribution_election": {
        "trigger": "separation_from_service",
        "form": "5_year_installments"
      }
    },
    {
      "deferral_year": 2023,
      "deferral_source": "salary",
      "deferral_amount": 180000.00,
      "distribution_election": {
        "trigger": "retirement_age_65",
        "form": "10_year_installments"
      }
    }
  ],
  "current_account_value": 928450.20,
  "investment_options": ["S&P 500 index", "Aggregate bond index"],
  "current_allocation": { "sp500": 0.60, "bond": 0.40 },
  "creditor_risk_status": "general_unsecured",
  "rabbi_trust": true,                   // protects from employer at-will breach but not bankruptcy
  "secular_trust": false                  // would protect from creditors but trigger immediate taxation
}

§409A distribution election rules

The election must specify both the trigger (when distribution starts) and the form (lump sum, installments, or annuity). The §409A-qualifying triggers are:

 TriggerWhat it meansModeling implication
Specific date / yearDistribution starts on the specified date regardless of employmentPredictable cash flow; long-horizon planning possible
Separation from serviceDistribution starts on termination of employment (with 6-month delay for 'specified employees')Cash flow timing depends on when employment ends
DeathDistribution to beneficiary on participant's deathEstate-planning interaction
Disability (§409A definition)Distribution on permanent disability under §409A definitionLong-term-disability insurance interaction
Unforeseeable emergencyLimited to demonstrated severe financial hardship; restrictive standardRare in practice
Change in controlDistribution on §409A-qualifying corporate change-in-control eventM&A planning interaction

The "specified employees" rule adds a 6-month delay to separation-from-service distributions for top-paid 50 employees of a public company — relevant for almost all HNW NQDC modeling because the people with NQDC are typically the people the rule applies to.

The form of distribution (lump sum vs. installments vs. annuity) is also locked at the deferral election. Test data has to model each form, and the platform's projection engine has to handle the different cash-flow shapes:

// Distribution-form examples
{
  "lump_sum": {
    "amount": 928450.20,
    "year": 2031,
    "tax_treatment": "ordinary_income_in_year_received"
  },
  "5_year_installments": {
    "annual_amount": 185690.04,
    "first_year": 2030,
    "last_year": 2034,
    "tax_treatment": "ordinary_income_year_by_year"
  },
  "lifetime_annuity_with_5_year_period_certain": {
    "monthly_amount": 4250.00,
    "start_date": "2030-01-15",
    "minimum_payments": 60,
    "lifetime_continuation_after": true,
    "tax_treatment": "ordinary_income_year_by_year"
  }
}

The employer-creditor-risk modeling

The single largest risk factor in NQDC that most platforms ignore: the deferred amounts are technically the employer's general assets. If the employer enters bankruptcy, NQDC participants are unsecured creditors with claims behind every secured creditor and most other categories. Real-world losses on NQDC have happened in essentially every major corporate bankruptcy — Enron, Lehman, multiple retail-chain bankruptcies. The risk is not theoretical.

For modeling, this means NQDC assets shouldn't be treated as a 1:1 personal-balance-sheet entry. A conservative valuation applies a creditor-risk-discount based on the employer's credit quality, the funding mechanism (rabbi trust, secular trust, or unfunded), and the size of the NQDC liability relative to the employer's assets. Platforms that show NQDC at full face value to the participant overstate net worth by 10-30% for typical mid-cap-employer NQDC arrangements.

// NQDC with creditor-risk valuation
{
  "nominal_value": 928450.20,
  "employer_credit_rating": "BBB",
  "funding_mechanism": "rabbi_trust",
  "creditor_risk_discount": 0.08,         // 8% discount for BBB-rated employer
  "risk_adjusted_value": 854174.18
}

The rabbi trust is a partial protection — it segregates assets in a trust where the employer can't unilaterally divert them, but the assets remain reachable by the employer's general creditors in bankruptcy. A secular trust would protect the assets from creditors but triggers immediate constructive-receipt taxation, defeating the deferral. Most NQDC plans use rabbi trusts; a few don't fund the obligation at all (purely an employer accounting entry).

SERP — the supplemental-pension overlay

A Supplemental Executive Retirement Plan (SERP) is a specific type of NQDC that promises a defined-benefit-pension-style retirement income to the executive. It's typically structured to make the executive whole on what the qualified-plan limits prevent — e.g., calculating "what would your 401(k) be worth if there were no §415 limit" and providing the difference as an NQDC obligation.

SERP modeling combines NQDC's §409A constraints with defined-benefit-pension actuarial mechanics. The executive accrues a benefit based on years of service and final salary; the benefit is paid out at retirement under a §409A-elected schedule; the funding may be informal (employer general assets) or formal (rabbi trust holding life insurance on the executive). Test data for SERP has to include both the NQDC distribution-election fields and the actuarial-benefit-accrual fields.

What synthetic data has to model

A realistic NQDC-aware test corpus needs:

 Test caseWhat it exercises
Multiple-year deferrals with different election triggersPer-deferral distribution scheduling; cash-flow projection across multiple events
Specified-employee 6-month delaySeparation-from-service timing logic
Installment-form distributionMulti-year cash flow; tax computation per year
Lifetime annuity from NQDCAnnuity mechanics on NQDC; mortality assumptions
Employer credit-risk discountRisk-adjusted valuation; creditor-risk modeling
SERP with DB-style accrualActuarial benefit projection; final-salary calculation
§409A election changeLater-and-not-soon rule validation; failure-prevention logic
NQDC + qualified plan + equity comp combinationHolistic executive-compensation modeling; cross-account interactions

How this shows up in our catalog

The HNW and ultra-HNW bundles in the WealthSynth catalog include households with NQDC participation in realistic distributions: roughly 60-80% of C-suite executives at public companies have NQDC, with deferral history spanning 5-15 years and varied distribution-election profiles. The longitudinal data carries the per-deferral elections and the projected cash-flow timeline. Employer-credit-risk modeling is included with realistic distribution of credit ratings and funding mechanisms.

For the broader decumulation context, see Decumulation Edge Cases. For the equity-compensation interaction with NQDC for executives, see Equity Compensation theme and Building an equity compensation platform. For the actuarial mechanics shared with SERP, see Defined-benefit pension modeling.