The small business owner is the under-served client segment of US wealth management. They're typically a firm's highest-net-worth clients in dollar terms (the business equity dominates the personal balance sheet) and the most tax-complex (entity structure, reasonable-salary determination, QBI phaseouts, K-1 timing). They're also the segment with the fewest planning tools built specifically for them. The Small Business / K-1 Tax Pack is 140 households built to fix the data side of that problem: LLC owners, S-Corp shareholders, partnership members, and solo practitioners — each with the entity-level and individual-level tax data that planning tools serving this segment need.
Tax planning for a small business owner is genuinely different from W-2 planning. The reasonable-salary determination drives both payroll tax and the QBI deduction. The QBI phaseout interacts with SSTB classification, taxable-income thresholds, and W-2 wages paid by the business. The Solo 401k contribution limit depends on whether the entity is an LLC taxed as sole proprietor, an S-Corp, or a partnership. The 1031 exchange structure for a business owner who also owns the operating real estate is its own planning surface. None of this fits the W-2 modal-customer assumptions baked into most planning tools.
When tools do try to handle small business owners, they often produce technically correct but practically useless outputs: a QBI calculation that doesn't account for the SSTB phaseout, a reasonable-salary suggestion that's a single number rather than a defensible range, a Solo 401k limit that doesn't model the employer contribution correctly. Real practitioners patch around the tooling with spreadsheets — exactly the friction the tooling was supposed to remove.
This Data Set provides the structured fixture data to build and validate planning tools that handle small business owners well. The 140 households cover the full entity taxonomy (LLC, S-Corp, partnership) and the practitioner-relevant edge cases (SSTB classification, partnership guaranteed payments, capital account tracking, multi-member coordination).
Validates the platform's QBI deduction logic, reasonable-salary calculator, and Solo 401k optimizer against 140 households across the entity taxonomy. Demos to CPA and EA prospects without using real client data.
Tests the firm's S-Corp reasonable-salary documentation workflow against realistic households where the salary determination genuinely matters (not just the trivial cases) — surfacing where the tool's audit-defensibility logic falls short.
Validates partnership K-1 generation and capital-account tracking logic across multi-member partnership structures, including the edge cases (special allocations, profits interests, guaranteed payments to retiring partners) that break naive K-1 logic.
Tests the firm's contribution-limit calculator across entity-type variations (LLC sole-prop vs. LLC S-Corp election vs. partnership), ensuring the calculator produces correct employee deferral + employer profit-sharing limits for each entity type.
Uses the corpus's structured business-financial data (revenue, EBITDA, owner compensation, capital accounts) as fixtures for valuation-tool development, particularly for the small-business-multiple methodologies common in transition planning.
The 140 households span ten archetypes covering the full small business taxonomy: solo practitioners (lawyers, doctors, consultants), small-business LLC owners, established business owners with multi-member partnerships, real estate investor entities, retired business owners holding equity in successor structures, and the niche cases (gig-economy LLCs, single-member partnerships under the family attribution rules).
Each household carries the structured business data: entity type (LLC sole-prop, LLC S-Corp election, S-Corp Inc., partnership, sole proprietorship), ownership percentage, K-1 distributions or pass-through income, reasonable-salary calculation with the comparable-data justification, QBI deduction with SSTB classification and phaseout calculations, guaranteed payments where applicable, and capital account balance with year-over-year reconciliation. The household-level personal tax fields integrate the business data appropriately — the K-1 income flows to the 1040, the QBI deduction is computed at the household level, and the Solo 401k contribution limit reflects the actual entity type rather than a generic assumption.
The Data Set ships as JSON and CSV. The WealthSynth Methodology PDF documents the entity taxonomy, the reasonable-salary methodology (with citations to the IRS factor analysis and the SS&C / RC reports advisors typically use), the QBI calculation including the SSTB classification rules, and field-by-field structures for partnership-specific complexity (guaranteed payments, special allocations, capital account reconciliation).
A redacted summary of one household from this Data Set — names, employers, exact balances, and metro area are stripped. Ages are bucketed, income and net worth are reported as bands. The full record (and all 140 like it) ships in the ZIP.
{
"business.entity_type": <value>,
"business.k1_distributions": <value>,
"taxes.qbi_deduction": <value>,
"business.reasonable_salary": <value>,
"business.capital_account_balance": <value>
}Returns business owners whose taxable income places them in the QBI deduction phaseout range AND whose business is an SSTB (specified service trade or business) — the planning population where reasonable-salary and pension-contribution decisions most affect after-tax outcome.
households.filter(h =>
h.business.entity_type !== null &&
h.business.is_sstb &&
h.taxes.taxable_income >=
h.taxes.qbi_phaseout_start &&
h.taxes.taxable_income <=
h.taxes.qbi_phaseout_end
)Returns S-Corp shareholders whose salary-to-distribution ratio is below 30% — a common audit trigger — sorted by total business income. The advisor outreach queue for S-Corp salary defensibility.
households.filter(h => h.business.entity_type === 'S-Corp' && h.business.reasonable_salary < h.business.k1_distributions * 0.3 ).sort((a, b) => b.business.k1_distributions + b.business.reasonable_salary - a.business.k1_distributions - a.business.reasonable_salary)
For each business-owner household, returns the maximum Solo 401k contribution under both employee deferral and employer profit-sharing components, given the actual entity type.
households.filter(h => h.business.entity_type)
.map(h => {
const employee = Math.min(23000, h.business.reasonable_salary);
const employer = h.business.entity_type === 'S-Corp'
? h.business.reasonable_salary * 0.25
: (h.business.k1_distributions + h.business.reasonable_salary) *
0.20;
return {
id: h.id,
employee_max: employee,
employer_max: employer,
total_max: Math.min(employee + employer, 69000)
};
})Returns partnership owners whose capital account balance change in the year doesn't reconcile with (contributions − distributions + allocated income). Catches K-1 errors that often surface only at year-end.
households.filter(h =>
h.business.entity_type === 'Partnership'
).filter(h => {
const expected = h.business.capital_account_prior_year +
h.business.contributions_ytd -
h.business.distributions_ytd +
h.business.allocated_income_ytd;
return Math.abs(h.business.capital_account_balance - expected) > 1;
})Each business-owner household is generated against archetype-specific distributions of revenue, EBITDA, owner compensation, and capital structure. Entity-type assignment is calibrated from IRS data on small-business filing types: LLC sole-prop is dominant for solo practitioners; LLC with S-Corp election is dominant for $100K+ revenue businesses; partnership is dominant for multi-member professional services; S-Corp Inc. appears for established mid-sized businesses. Reasonable-salary calculations use the IRS factor analysis (employee duties, training, time and effort, dividend history, payments to non-shareholder employees, compensation comparables). QBI deduction calculations include SSTB classification and the phaseout math; about 35% of the corpus is in or near the phaseout zone, which is where the planning value is highest. Partnership K-1s include guaranteed payments where structurally appropriate, and capital account tracking with realistic year-over-year reconciliation. The corpus passes the WealthSynth consistency validator (entity-level financials reconcile with personal-level K-1 income; capital account math is internally consistent) and the LLM-as-judge gate. Annual refresh re-runs against current-year QBI thresholds, SSTB phaseout brackets, and Solo 401k contribution limits.
Yes. The corpus matches the IRS distribution: LLC sole-prop dominates the under-$100K segment; LLC with S-Corp election dominates the $100K–$1M segment; partnership dominates the multi-member professional-services segment; S-Corp Inc. appears for established mid-sized businesses. The Methodology PDF documents the entity-type calibration with citations to IRS Form 1065 and Form 1120-S aggregate filing data.
Reasonable salary uses the IRS factor analysis (the same factors the IRS applies in audit) plus an industry-comparable benchmark from RC Reports / SS&C data. The corpus reasonable-salary value is documented with a defensible range (low/mid/high) so your engine can offer the same range to advisors.
Yes — every business in the corpus has a structured `is_sstb` flag with the trade/business classification (legal, health, accounting, consulting, etc.). The QBI calculation applies the SSTB phaseout where applicable, with the structured `qbi_phaseout_start` and `qbi_phaseout_end` fields exposing the 2024 thresholds (the current calibration year).
For non-SSTB businesses above the income threshold, the QBI deduction is limited to the greater of 50% of W-2 wages or 25% of W-2 wages plus 2.5% of qualified property. The corpus structures the W-2-wages-paid-by-business and qualified-property values so your engine can apply the limitation correctly.
Yes — about 18% of partnership households in the corpus have a special allocation (typically for one partner's expertise contribution or capital-at-risk position). The structured K-1 data includes the allocation method and the substantial-economic-effect documentation required for the allocation to stand under §704(b).
Profits interests are present in about 12% of the partnership households (typically for service partners in professional-services LLPs or for promoted real estate sponsor structures). The corpus structures the profits-interest grant date, vesting schedule, and the §83(b) election where the recipient elected. Profits-interest planning is increasingly important for advisor practices and the Data Set supports it.
Yes — about 15% of the corpus represents real estate investor entities (single-member LLCs holding investment property, multi-member LLCs holding portfolio properties, real estate professional status candidates). The cost segregation and bonus depreciation deductions are structured where applicable.
B17 covers the broad small-business-owner population — LLCs, S-Corps, partnerships across all industries. B20 is narrowly focused on the founder/early-employee QSBS Section 1202 use case. A small business owner with founder-stock equity might appear in both: B17 for the operating business, B20 for the QSBS-qualifying corporate stock. Most practitioners purchase B17; advisors specifically focused on tech founders add B20.
60 founder and early-employee households with QSBS Section 1202 attestation chains, 5-year holding period satisfaction, gross-asset tests at issuance, and stacking via non-grantor trusts. Includes IPO and secondary-sale liquidity events.
150 households with detailed equity compensation: RSU vesting calendars, ISO/NQSO grants, ESPP with lookback, 83(b) elections, AMT exposure, and exercise window expirations. Each grant has a structured grant_type, vesting schedule, and vested-to-date calculation.
320 households with multi-state tax exposure: HCOL-to-LCOL relocations, dual residency, MA millionaires tax, NY/CA convenience-of-employer rules, and digital nomads with no fixed domicile. Each carries source-state allocation history and residency change events.
Purchases are for internal use only. Redistribution or resale of data is prohibited under the WealthSchema Data License.
View data license →