Values-based investing has moved from niche to default. Roughly 70% of millennial and Gen Z investors say they want their portfolio to reflect their values; the share is meaningful even among older cohorts. Platforms serving this preference need test data that captures the structural complexity of values-based portfolio construction: ESG screening alignment, sector exclusion lists, impact allocation percentages, and the conditional demographic data (religion in particular) that drives faith-based screening. The ESG Values Alignment Auditor is 25 households where this complete picture is structured — including the conditional privacy overlay that exposes religion data only for households where it's relevant to the planning question.
ESG and values-based platforms have a data problem that's distinct from the modal wealth platform: they need to reason about preferences, not just balances. A client whose values include climate concern and biblically-responsible exclusions is different from a client with the same wealth and same risk tolerance who has no values constraints. The portfolio construction differs structurally — different equity universe, different fund selection, different sector allocations. Software supporting this needs test fixtures where the values data is structured alongside the financial data.
The second problem is privacy. Religion is often the single most important preference driver for faith-based investors, but it's also the field most carefully governed by privacy contracts. The WealthSchema v4 privacy contract addresses this with a conditional overlay: religion (and race/ethnicity) appear only in households tagged for the bundles where it's relevant to the planning. B08 is one of these bundles; B26 is the other. For other bundles, these fields are not populated by default.
This Data Set provides 25 households where the values-overlay is fully populated: ESG preference scores, sector exclusion lists, impact allocation percentages, DAF holdings (donor-advised funds are heavily used in values-based giving), and the demographic values that drive faith-based screening. The conditional privacy overlay is intentionally clear — these fields are populated only where the bundle scope makes them relevant.
Validates the platform's preference-elicitation, screening logic, and portfolio-construction algorithms against 25 households whose values profiles span the realistic range — climate-focused, biblically-responsible, halal-compliant, and impact-focused.
Tests the firm's faith-based portfolio construction against client profiles whose religion field is populated — ensuring the screening logic correctly handles biblically-responsible-investing exclusions, halal-compliance screening, and the doctrinal nuances different faith communities apply.
Validates the firm's impact-measurement reporting against households whose impact-allocation structure (impact bonds, community-investment notes, mission-aligned alts) lets the manager test the impact-attribution-to-portfolio reporting logic.
Tests the firm's DAF grant-making analytics against donors whose grant-making patterns are structurally documented — supporting the donor-recommendation logic, grant-cycle planning, and DAF-balance forecasting.
Validates the firm's handling of conditional demographic data (religion, race/ethnicity) — ensuring the data is exposed only where the planning question warrants it and the consent / privacy framework is correctly structured for the use case.
The 25 households cluster around two archetypes: ESG / Values-Based Investors (N-02, the broader preference-driven cohort) and ESG / Faith-Based / Impact Investors (ES-01, the more specifically faith-based cohort). The mix is intentional — about 60% are general values-based investors with broad ESG preferences; about 40% are specifically faith-based with religious-screening overlay.
Every household has a structured ESG / values profile: ESG preference scores across the canonical preference dimensions (climate, social, governance) on a 0-100 scale; sector exclusion lists with the specific sectors flagged (firearms, tobacco, alcohol, gambling, fossil fuels, weapons manufacture, adult entertainment); impact allocation percentages where the household has a deliberate carve-out for impact investments; and DAF holdings with grant-making history. The conditional demographic overlay populates religion and race/ethnicity fields where the bundle scope makes them relevant — for these 25 households, both fields are populated; for households in other bundles, these fields are absent per the privacy contract.
The Data Set ships as JSON and CSV. The WealthSynth Methodology PDF documents the values-preference taxonomy (with mapping to MSCI ESG categories), the sector-exclusion taxonomy, the impact-allocation methodology, the conditional privacy overlay specification (with detailed treatment of when religion/race fields should and shouldn't be populated), and the DAF grant-making framework.
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 25 like it) ships in the ZIP.
{
"esg.preference_scores": <value>,
"esg.exclusion_sectors": <value>,
"esg.impact_allocation_pct": <value>,
"demographics_overlay.religion": <value>,
"demographics_overlay.values": <value>
}Returns households whose climate preference score is high but whose current portfolio fossil-fuel exposure exceeds their stated tolerance — the planning queue for portfolio re-alignment.
households.filter(h =>
h.esg.preference_scores.climate >= 80 &&
h.assets.equity.fossil_fuel_exposure_pct >
h.esg.fossil_fuel_tolerance_pct
)For households whose religion preference invokes biblically-responsible investing, returns the specific sector exclusions and any current portfolio holdings that violate them — the queue for portfolio screening.
households.filter(h =>
h.demographics_overlay.religion_practice ===
'biblically_responsible'
).map(h => ({
id: h.id,
exclusions: h.esg.exclusion_sectors,
violations: h.assets.equity.holdings.filter(holding =>
h.esg.exclusion_sectors.includes(holding.sector))
}))Returns DAF holders with their year-over-year grant-making patterns and current DAF balance, useful for grant-cycle planning and donor-recommendation logic.
households.filter(h =>
h.investments.daf_grants?.length > 0
).map(h => ({
id: h.id,
daf_balance: h.investments.daf_balance,
ytd_grants: h.investments.daf_grants
.filter(g => g.year === currentYear)
.reduce((s, g) => s + g.amount, 0),
prior_year_grants: h.investments.daf_grants
.filter(g => g.year === currentYear - 1)
.reduce((s, g) => s + g.amount, 0)
}))Returns values-aligned households with under-allocated impact percentages — the planning population where additional impact-bond, community-investment-note, or mission-aligned-fund allocations would reflect the client's stated preferences.
households.filter(h =>
h.esg.target_impact_allocation_pct >
h.esg.current_impact_allocation_pct &&
h.esg.target_impact_allocation_pct -
h.esg.current_impact_allocation_pct > 0.05
)Each household's values profile is generated against archetype-specific patterns. The 25-household corpus is intentionally focused — values-based investing concentrates in specific demographic and life-stage cohorts, so a small targeted corpus serves the use cases better than a larger generic one. ESG preference scores are calibrated against US SIF Foundation data on values-based investor priorities. Sector exclusion lists use the canonical taxonomy spanning the major exclusion categories (firearms, tobacco, alcohol, gambling, fossil fuels, weapons, adult entertainment). DAF grant-making patterns are calibrated against Schwab Charitable, Fidelity Charitable, and NPT-published donor-advised-fund industry data. The conditional demographic overlay is populated for these 25 households with full transparency about the privacy implications — the Methodology PDF documents the consent / disclosure framework. The corpus passes the WealthSynth consistency validator (preference scores reconcile with sector exclusions; impact allocations are mathematically consistent; DAF math is correct) and the LLM-as-judge gate. Annual refresh tracks evolving values-investing taxonomies and any privacy-regulation updates.
Values-based investing concentrates in specific demographic and behavioural cohorts. A 25-household corpus calibrated against US SIF Foundation data on the values-based investor population is more useful for testing preference-elicitation and screening logic than a larger generic corpus where most households don't have meaningful values constraints. For comparison, B26 (Faith-Based & International) is 70 households serving an adjacent but distinct planning surface.
Per the v4 privacy contract, race/ethnicity and religion fields are NOT in the default household record. They appear only as a conditional overlay for B08 (this bundle) and B26 (Faith-Based & International) households where the planning question makes the data relevant. For households in other bundles, these fields are not present in the data. The Methodology PDF documents the complete privacy contract and the consent framework.
Yes. ESG preference scores map to MSCI ESG taxonomy categories. Sector exclusion lists use the canonical taxonomy spanning firearms, tobacco, alcohol, gambling, fossil fuels, weapons manufacture, and adult entertainment. The Methodology PDF includes a mapping table for cross-references with major ESG-data-vendor taxonomies.
Yes. About 40% of the corpus is faith-based with religious-screening overlay populated. The doctrinal screening varies by faith community: biblically-responsible investing, halal compliance, kosher compliance, dharmic investing, and ethical-investing aligned with specific religious traditions. The structured screening data lets your platform handle the variations correctly rather than applying a generic 'religious screening' approach.
Yes. DAF holdings, balances, and grant-making patterns are calibrated against Schwab Charitable, Fidelity Charitable, NPT, and the major community-foundation-DAF program data. About 60% of the corpus has DAF holdings; grant-making frequency and amounts reflect realistic distributions across active and dormant DAF segments.
Yes. About 30% of the corpus has impact-bond or community-investment-note positions — typically structured for a specific social-impact target (affordable housing, community lending, social-impact loan funds). The structured impact data includes the issuer, the impact target, the financial terms (yield, term, liquidity), and the impact-measurement framework being applied.
About 25% of the corpus participates in shareholder advocacy (proxy voting in alignment with values, shareholder resolution support, engagement campaign participation). The structured advocacy data includes the issuer engagement, the proxy-voting record, and the participation in collaborative engagement initiatives like Climate Action 100+.
Both bundles use the conditional privacy overlay. B08 focuses specifically on ESG and values-aligned investing — the preference-elicitation and screening surface. B26 focuses on cross-border financial considerations (visa status, FBAR, foreign income) plus faith-based screening as a secondary dimension. Many values-aligned-investment platforms purchase both. The bundles also share calibration sources and the privacy framework.
50 households with values-driven investment overlays: ESG screening, halal/biblically-responsible exclusions, impact bond allocations, DAF management, and shareholder advocacy participation. Companion to B08 (ESG Values Alignment) — fully populates the demographic conditional overlay.
70 households with international or faith-based financial considerations: H-1B visa-dependent earners, recent immigrants navigating ITIN-to-SSN transitions, FBAR/FATCA filers, and faith-based investors with strict exclusions. Conditional populates religion field per PLAN privacy contract.
110 HNW and UHNW households with estate planning readiness scores, trust structures, gifting histories, charitable giving data, and GST exemption tracking. Complements B09 (Next-Gen Attrition) and B12 (Estate & Trust Planning).
Purchases are for internal use only. Redistribution or resale of data is prohibited under the WealthSchema Data License.
View data license →