Research & Data

Before & After: How Adding FAQ Schema Increased AI Citations by 3x

Mar 10, 20258 min read

A real case study showing what happened when we added proper FAQ and HowTo Schema to a client's website. The citation data before and after tells the full story.

Background

In late 2024, a B2B SaaS company in the project management space came to us with a familiar problem: solid Google rankings, decent traffic, but essentially zero visibility in AI-generated answers. Their product was being discussed in ChatGPT and Perplexity responses regularly — but usually as a passing mention rather than a cited source.

Their site had 47 pages of editorial content — blog posts, guides, and comparison articles. All were well-written and comprehensive. None had any Schema markup beyond a basic Organization Schema on the homepage.

Client profile (anonymized)

DA 41

Domain Authority

47

Content pages

~8,200/mo

Organic visits

The baseline audit

We ran a full RankAsAnswer audit across all 47 pages. The results confirmed the pattern we've seen across hundreds of similar sites:

Before: AEO Audit

Overall AEO score34/100
Pages with FAQPage Schema0/47
Pages with Article Schema0/47
Q&A content with Schema0%
Pages with author Schema0/47

What we found

  • !31 pages had FAQ-style content with no FAQPage Schema
  • !12 pages had step-by-step guides with no HowTo Schema
  • !All blog posts had bylines but no Article Schema
  • !Most H2s were declarative, not question-phrased

What we changed

We focused on the 15 highest-traffic pages first. For each page, we made three changes:

1

Added FAQPage Schema to all pages with Q&A content

RankAsAnswer generated the JSON-LD for each page automatically. We reviewed and pasted the code into each page's head section. This took approximately 90 minutes for 15 pages.

2

Added Article Schema with author attribution

For all 15 blog posts, we added Article Schema including the author's name, sameAs links to their LinkedIn and Twitter, and both datePublished and dateModified fields.

3

Rewrote the most important H2s as questions

On each page, we identified 2-3 key H2 sections that answered specific user questions and rephrased them as questions. This was a content edit, not a rewrite.

Here's what the before and after looked like for a typical page:

Before: No structured data
<!-- No structured data found on this page -->
<!-- Only visible content: Q&A section in plain HTML -->
<div class="faq-section">
  <h3>What is Schema markup?</h3>
  <p>Schema markup is a vocabulary of structured data...</p>
  <h3>How do I add Schema to my site?</h3>
  <p>You add Schema using JSON-LD in a script tag...</p>
</div>
After: FAQPage Schema added
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What is Schema markup?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Schema markup is a vocabulary of structured data added to HTML that helps machines understand the meaning and type of your content."
      }
    },
    {
      "@type": "Question",
      "name": "How do I add Schema to my site?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Add a script tag with type 'application/ld+json' containing your JSON-LD Schema in your page's head or body."
      }
    }
  ]
}
</script>

Results after 6 weeks

After: 6 Weeks Post-Implementation

Overall AEO score71/100 (+37)
Perplexity citations (weekly)34 (+29)
AI Overview appearances12 (+12)
Citation traffic (estimated)+680 visits/mo

Unchanged metrics

Google organic rankingsNo change
Domain AuthorityNo change
Total backlinksNo change

The traditional SEO metrics didn't change — only the AEO signals did, confirming that the citation improvement was caused by Schema, not other factors.

Why it worked

The improvement was almost entirely driven by FAQPage Schema. The content already existed — the Q&A pairs were in the HTML. Adding Schema didn't change the content; it made the content machine-readable in a way that AI retrieval systems could extract and cite directly.

Perplexity's Sonar model in particular showed the fastest response — within 3 weeks of the Schema additions, the pages began appearing in Perplexity's Sources panel for relevant queries.

Total implementation time

The entire Schema implementation for 15 pages took approximately 4 hours: 90 minutes to generate and review the Schema code using RankAsAnswer, and 2.5 hours to paste it into the CMS and update the H2s.

How to replicate this

1
Audit your top 15 pages with RankAsAnswer to identify Schema gaps
2
Identify all pages with FAQ-style content (questions and answers)
3
Generate FAQPage Schema using RankAsAnswer's one-click Schema generator
4
Review generated code and paste into your CMS or HTML head
5
Add Article Schema with author attribution to all editorial content
6
Review top H2s and rewrite 2-3 per page as questions where appropriate
7
Re-audit after 2 weeks to verify Schema is valid and scoring improved
8
Track Perplexity citations using RankAsAnswer's Citation Checker
Was this article helpful?
Back to all articles