Why Should These 3 Schema Types Be Your Top Priority?
Based on an analysis of 100,000 web pages (2025 Moz study), the following 3 Schema types deliver the most significant impact on boosting AI citation rates and Google rich result displays:
| Schema Type | Applicable Pages | AI Citation Lift | Rich Result Display |
|---|---|---|---|
| Organization | Homepage / About Us | +15% | Knowledge Panel |
| Article/BlogPosting | All blog and article pages | +28% | Article cards |
| HowTo | How-to tutorial pages | +41% | Step lists |
Organization Schema: Help Google Recognize Your Brand
Organization Schema goes on your website's homepage, telling Google (and AI engines) the foundational information about your brand.
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Brand Name",
"url": "https://yoursite.com",
"logo": "https://yoursite.com/logo.png",
"description": "A concise brand description, 40-100 words",
"sameAs": [
"https://twitter.com/yourhandle",
"https://linkedin.com/company/yourcompany"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"email": "hello@yoursite.com"
}
}
Key field explanations:
sameAs: Links to your official accounts on various platforms, helping Google confirm your brand identitylogo: We recommend using a clear PNG image of at least 112x112px
Article Schema: Boost Your Article's Authority
Article Schema is a must-have for every blog post, allowing Google to accurately identify key metadata such as the author and publication date.
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Article title (matching the H1)",
"author": {
"@type": "Person",
"name": "Author name",
"url": "https://yoursite.com/about"
},
"datePublished": "2026-05-06",
"dateModified": "2026-05-06",
"publisher": {
"@type": "Organization",
"name": "Website name",
"logo": {
"@type": "ImageObject",
"url": "https://yoursite.com/logo.png"
}
},
"image": "https://yoursite.com/article-cover.jpg",
"description": "Article description, kept consistent with the meta description"
}
Article vs BlogPosting:
Article: Best suited for news coverage and in-depth analysisBlogPosting: Best suited for blog posts and tutorials (Google supports both; we recommend usingBlogPostingfor blog content)
HowTo Schema: A Traffic Multiplier for How-To Tutorials
HowTo Schema applies to any how-to tutorial with clearly defined steps, and it's the Schema type that delivers the most significant boost to AI citation rates.
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to XXX (how-to tutorial title)",
"description": "This tutorial explains how to complete the XXX task",
"totalTime": "PT15M",
"step": [
{
"@type": "HowToStep",
"name": "Step 1 title",
"text": "Detailed description of step 1, explaining exactly what the user should do",
"image": "https://yoursite.com/step1.jpg"
},
{
"@type": "HowToStep",
"name": "Step 2 title",
"text": "Detailed description of step 2"
}
]
}
totalTime format: ISO 8601 time format, where PT15M = 15 minutes and PT1H = 1 hour
Deployment Location and Validation
Where to Place It
Place all Schema code uniformly inside the <head> tag, or in a <script> tag at the bottom of the <body>:
<script type="application/ld+json">
{ your Schema JSON code }
</script>
Validation Tools
- Google Rich Results Test:
search.google.com/test/rich-results - Schema.org Validator:
validator.schema.org
Use the SGAIndex Schema Generator to visually generate all the Schema code above, with no need to hand-write JSON.
Frequently Asked Questions (FAQ)
Q: Can multiple Schema types go on the same page? A: Yes, and it's recommended. For example, an article page can include both Article Schema and FAQPage Schema at the same time.
Q: Where should I place the Schema code for the best SEO results? A: Inside the head tag and at the bottom of the body produce the same result—Google can recognize both. We recommend placing it all inside the head for easier management.