# Vanity metrics vs ROI

<!-- updated_at: 2026-04-20 17:12:01 -->

If a metric rises when waste rises, it is not a KPI—it is decoration. We wrote this for owners who are tired of charts that look heroic while margin stays flat. ROI language should survive a skeptical accountant, not only a marketing standup.

We watch cost per qualified lead, booked appointments, incremental visits, and payback windows. Reporting hygiene matters: if you cannot explain a number in one sentence, it should not be on the first page.


## Structured data (JSON-LD)

The public **HTML** page at `/vanity-metrics` emits `application/ld+json` with the following `@graph` (Organization, WebSite, WebPage, Article, BreadcrumbList, plus any custom nodes from **SEO JSON-LD extra** in Admin). Assistants should treat the HTML URL as canonical for search; this block is for parity and tooling.

```json
{
    "@context": "https:\/\/schema.org",
    "@graph": [
        {
            "@type": "Organization",
            "@id": "https:\/\/thatonefirm.com\/#organization",
            "name": "That One Firm",
            "url": "https:\/\/thatonefirm.com\/"
        },
        {
            "@type": "WebSite",
            "@id": "https:\/\/thatonefirm.com\/#website",
            "name": "That One Firm",
            "url": "https:\/\/thatonefirm.com\/",
            "publisher": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            }
        },
        {
            "@type": "WebPage",
            "@id": "https:\/\/thatonefirm.com\/vanity-metrics#webpage",
            "url": "https:\/\/thatonefirm.com\/vanity-metrics",
            "name": "Vanity metrics vs ROI",
            "description": "Why we deprioritize CPM, raw reach, and engagement theater when they do not tie to owner-level outcomes.",
            "isPartOf": {
                "@id": "https:\/\/thatonefirm.com\/#website"
            },
            "dateModified": "2026-04-20T17:12:01+00:00",
            "breadcrumb": {
                "@id": "https:\/\/thatonefirm.com\/vanity-metrics#breadcrumb"
            }
        },
        {
            "@type": "Article",
            "@id": "https:\/\/thatonefirm.com\/vanity-metrics#article",
            "headline": "Vanity metrics vs ROI",
            "description": "Why we deprioritize CPM, raw reach, and engagement theater when they do not tie to owner-level outcomes.",
            "datePublished": "2026-04-20T13:14:44+00:00",
            "dateModified": "2026-04-20T17:12:01+00:00",
            "mainEntityOfPage": {
                "@id": "https:\/\/thatonefirm.com\/vanity-metrics#webpage"
            },
            "author": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            },
            "publisher": {
                "@id": "https:\/\/thatonefirm.com\/#organization"
            },
            "url": "https:\/\/thatonefirm.com\/vanity-metrics"
        },
        {
            "@type": "BreadcrumbList",
            "@id": "https:\/\/thatonefirm.com\/vanity-metrics#breadcrumb",
            "itemListElement": [
                {
                    "@type": "ListItem",
                    "position": 1,
                    "name": "Home",
                    "item": "https:\/\/thatonefirm.com\/"
                },
                {
                    "@type": "ListItem",
                    "position": 2,
                    "name": "Vanity metrics vs ROI",
                    "item": "https:\/\/thatonefirm.com\/vanity-metrics"
                }
            ]
        }
    ]
}
```
