# An RIA&#39;s Advisors Are the Product — and 0% of Their Bios Have Schema

Wealth managers run generic Organization schema with zero sameAs and no Person markup on the advisors who are the firm. Here&#39;s the fix — and why review schema that helps a home inspector is a compliance risk for an RIA.

Author: J.A. Watte
Published: May 30, 2026
Source: https://jwatte.com/blog/blog-mega-analyzer-ria-wealth-readiness/

---

A prospect looking for a fee-only fiduciary doesn't browse advisor pages anymore. They ask: "find me a CFP near me who works with physicians." The assistant answers from what it can verify — credentials in schema, a firm typed as a financial entity, `sameAs` links it can traverse to the SEC's adviser database — not from the headshot grid.

I added an **RIA / wealth-management readiness** check to the [Mega Analyzer](/tools/mega-analyzer/) after running a set of registered investment advisers, including niche and physician-focused firms, through the same deterministic parser an AI engine uses. The content engines are often excellent — a deep insight library, every article marked up, clean image alt text. And then the entity layer underneath is missing in a way that's specific and fixable.

## The advisors are the product, and they're entity-dark

For an RIA, the advisory roster *is* the offering. On a typical firm with a large `/people/` directory, **zero of the advisor bios carry `Person` schema** — no `jobTitle`, no `worksFor`, and critically no `hasCredential` for the CFP or CFA that is the entire verification hook. That's often a fifth or more of the whole site running invisible to an answer engine, including the named principals.

```json
{
  "@type": "Person",
  "@id": "https://example.com/people/jane-doe/#person",
  "name": "Jane Doe, CFP®",
  "jobTitle": "Senior Wealth Advisor",
  "worksFor": { "@id": "https://example.com/#org" },
  "hasCredential": [{
    "@type": "EducationalOccupationalCredential",
    "credentialCategory": "certification",
    "name": "CERTIFIED FINANCIAL PLANNER",
    "recognizedBy": { "@type": "Organization", "name": "CFP Board" }
  }],
  "sameAs": ["https://www.linkedin.com/in/...",
             "https://adviserinfo.sec.gov/individual/..."]
}
```

It's almost always a template gap, not a capability gap — the same CMS already binds an author `Person` onto the firm's articles. It just never reached the bios.

## Generic Organization, zero sameAs

The firm node is usually a bare `Organization` with no `sameAs` at all — no link to the firm's SEC IAPD page, no LinkedIn, nothing for an engine to reconcile a regulated adviser against. The schema leaders in wealth management type the node `FinancialService` and wire the IAPD link. An adviser with zero reconciliation links is hard to verify and easy to confuse with a similarly named firm — which, post-rebrand, is exactly when you can least afford it.

## The open lane: FAQPage in a niche nobody has claimed

`FAQPage` is rare across wealth-management sites. Genuinely educational Q&A — "how should a physician think about disability insurance," "what is a backdoor Roth" — wrapped in `FAQPage` is an open AEO lane in most advisory niches. The one rule: keep it educational and fair and balanced, never performance or testimonial content.

## The trap that's the opposite of every other vertical

Here's the part that makes wealth management different from a home inspector or a contractor. For a local-service business, I tell people to **add** `AggregateRating` and `Review` schema — it's a trust win. For an RIA, review and testimonial schema is a **compliance risk to gate.**

Under the SEC's Marketing Rule (Rule 206(4)-1, compliance date November 4, 2022), testimonials and endorsements require clear-and-prominent disclosures — whether the person is a client, whether they were compensated, and any material conflicts — and **the machine-readable schema claim carries the same liability as the visible testimonial.** Third-party rankings (the magazine "Top RIA" and "best advisor" lists) are treated as testimonials too: you must disclose the rating's date and criteria and whether you paid to participate. So the check does the opposite of what it does for a contractor: if it sees `Review` or `aggregateRating` on an RIA page, it flags it for CCO sign-off rather than cheering it on.

The check also looks for the disclosures that should be present and often aren't: a visible link to **Form ADV Part 2** and **Form CRS**, a fiduciary statement, the SEC-registration line ("Registration does not imply a certain level of skill or training"), and "past performance is not indicative of future results" anywhere strategies are discussed — with bare performance figures kept out of extractable schema fields.

None of the fixes are a rebuild. The schema work is near-zero-net-spend templating; the compliance work is making sure the disclosures that already govern your visible copy also govern your markup. Run an advisory site through the [Mega Analyzer](/tools/mega-analyzer/), the [Schema Validator](/tools/schema-validator/), and the [E-E-A-T analyzer](/tools/eeat-analyzer/) and you'll usually find a strong content firm sitting on an entity-dark people template and a generic org node.

## Fact-check notes and sources

- **SEC Marketing Rule (Rule 206(4)-1):** the SEC's [Marketing Rule FAQ](https://www.sec.gov/investment/marketing-faq) and the [final rule adopting release](https://www.sec.gov/rules/final/2020/ia-5653.pdf) (testimonials/endorsements, third-party ratings, performance advertising; compliance date Nov 4, 2022).
- **Form ADV / Form CRS:** [SEC investment-adviser registration](https://www.sec.gov/education/smallbusiness/exemptofferings/investmentadviser) and [adviserinfo.sec.gov (IAPD)](https://adviserinfo.sec.gov/).
- **Credential bodies:** [CFP Board](https://www.cfp.net/) and the [CFA Institute](https://www.cfainstitute.org/).
- **Schema typing:** schema.org [FinancialService](https://schema.org/FinancialService), [Person](https://schema.org/Person), [EducationalOccupationalCredential](https://schema.org/EducationalOccupationalCredential), and [FAQPage](https://schema.org/FAQPage).

## Related reading

- [The Mega Analyzer methodology](/tools/mega-analyzer/) — how the deterministic pass works
- [Schema Validator](/tools/schema-validator/) — verify FinancialService + Person + credential nodes
- [E-E-A-T analyzer](/tools/eeat-analyzer/) — the expertise/authority surface for YMYL-financial
- [AI Citation Readiness](/tools/ai-citation-readiness/) — is the firm citable to an answer engine?

*This post is informational, not legal, compliance, or investment advice. Route every testimonial, performance, ranking, and superlative surface through your Chief Compliance Officer before publishing. Mentions of third-party organizations are nominative fair use; no affiliation is implied.*


---

Canonical HTML: https://jwatte.com/blog/blog-mega-analyzer-ria-wealth-readiness/
RSS: https://jwatte.com/feed.xml
JSON Feed: https://jwatte.com/feed.json
Hero image: https://jwatte.com/images/blog-mega-analyzer-ria-wealth-readiness.webp
