The 6 schema types that matter most for AI citations
These are the schema types AI platforms consume most reliably. Implement them in the order listed, Organization first, then FAQPage, then the rest based on your page types.
Organization
CriticalUse on: Homepage
Tells AI platforms who your brand is, what you do, and where you exist across the web. The single most important schema type for AI citation. Include name, url, description, foundingDate, sameAs, and knowsAbout.
SoftwareApplication
Critical (SaaS)Use on: Feature pages
Required for SaaS brands to be cited in software-category AI responses. Include applicationCategory, operatingSystem, offers (with pricing), and aggregateRating if you have reviews.
FAQPage
HighUse on: Any FAQ section
Explicitly provides question-and-answer pairs in machine-readable format. AI platforms consume FAQPage schema directly to populate answers. The highest-impact schema type for content that answers questions.
HowTo
HighUse on: How-to guides
Structures step-by-step content in a format AI platforms are designed to extract and cite. Include name, description, and individual HowToStep elements with text for each step.
Article
MediumUse on: Blog posts
Marks blog content as an authoritative article with an author, publisher, and dates. E-E-A-T signals from Article schema influence Gemini and Google AI Overviews citation selection.
Review / AggregateRating
MediumUse on: Pricing / Product pages
Review schema is a strong signal for Perplexity and Gemini, especially for product category queries. If you have reviews, surfacing them with AggregateRating schema increases citation rates for comparison queries.
JSON-LD implementation guide
Copy-paste templates for the most important schema types. Customize with your own data before publishing, then validate with Google's Rich Results Test.
Organization schema (homepage)
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Searchbark",
"url": "https://searchbark.ai",
"description": "Searchbark is the AI search visibility platform that tracks Google rankings and AI citations across ChatGPT, Perplexity, Gemini, and Grok.",
"foundingDate": "2024",
"sameAs": [
"https://www.linkedin.com/company/searchbark",
"https://twitter.com/searchbark",
"https://www.crunchbase.com/organization/searchbark"
],
"knowsAbout": [
"AI search visibility",
"Generative Engine Optimization",
"Answer Engine Optimization"
]
}Implementation tip
Place in a <script type='application/ld+json'> tag in the <head> of your homepage. Update sameAs with every external profile you have.
FAQPage schema
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is Searchbark?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Searchbark is an AI search visibility platform that tracks your brand citations across ChatGPT, Perplexity, Gemini, and Grok alongside your Google keyword rankings."
}
}
]
}Implementation tip
Write FAQ questions in natural-language format — how a user would ask an AI tool, not in keyword format. Use specific, direct answers in the acceptedAnswer field.
Article schema (blog / guides)
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "What Is Generative Engine Optimization (GEO)?",
"description": "A complete guide to GEO: what it is, how it works, and how to improve your AI citation rate.",
"url": "https://searchbark.ai/geo",
"datePublished": "2026-01-01",
"dateModified": "2026-05-01",
"author": {
"@type": "Organization",
"name": "Searchbark",
"url": "https://searchbark.ai"
},
"publisher": {
"@type": "Organization",
"name": "Searchbark",
"logo": { "@type": "ImageObject", "url": "https://searchbark.ai/amplerank-icon.png" }
}
}Implementation tip
Always include dateModified and keep it accurate. Gemini and Perplexity weight freshness — an outdated dateModified can suppress citations for time-sensitive queries.
Frequently asked questions
Which schema markup has the biggest impact on AI citations?
Organization schema on your homepage is the single highest-impact schema type for most brands. It establishes your brand entity across all AI platforms simultaneously. FAQPage schema is the second highest-impact type, particularly for question-based AI queries.
Should I use JSON-LD or microdata for schema markup?
Always use JSON-LD. It's the format Google recommends, is easier to implement and maintain, doesn't require modifying your HTML structure, and is more reliably consumed by AI platform crawlers. Microdata and RDFa are technically supported but rarely used in new implementations.
How long after adding schema does it affect AI citations?
Google indexes schema changes within days of recrawling. Gemini citation improvements from schema can be visible within 1–2 weeks. Perplexity similarly indexes quickly. ChatGPT's base model may not reflect schema changes until the next model update cycle.
Can too much schema hurt my AI citation rates?
Yes, incorrect or inflated schema (like fake AggregateRatings) can suppress citations and trigger Google quality penalties. Only add schema types that accurately reflect the page content. Don't add FAQPage schema to a page without an FAQ section.