Schema Markup & Structured Data
TL;DR
Schema Markup (18% weight) gives AI systems machine-readable context about your pages. Without it, AI has to guess what your content is about. With it, AI can parse your pages accurately and cite them with confidence.
Last updated: 2026-03-09
What It Measures#
The Schema Markup factor evaluates the presence, correctness, and completeness of structured data on your pages. Structured data uses a standardized vocabulary (Schema.org) to describe your content in a format machines can read directly. This factor checks whether your pages include relevant schema types such as Article, Product, FAQPage, Organization, and BreadcrumbList. It also evaluates whether the markup is syntactically valid, whether required properties are populated, and whether the structured data accurately reflects the visible page content. Pages that include rich, accurate structured data score higher than pages with minimal or incorrect markup. The factor does not award extra credit for irrelevant schema types. Adding Product markup to a blog post will not help. Relevance matters as much as presence.
Why It Matters for AI#
AI systems are fundamentally different from human readers. A person can glance at a page and understand that it is a product listing with a price and a star rating. An AI system without structured data has to infer all of that from unstructured HTML, which is error-prone and slow. Schema markup eliminates this guessing. When your page includes a valid Product schema with
price, ratingValue, and availability properties, AI systems can parse that information instantly and use it in generated answers. This is why schema carries 18% of your total score — it directly determines how accurately AI represents your content. Pages with strong schema are more likely to be cited in AI-generated responses, included in AI shopping results, and surfaced by AI assistants. See How Scoring Works for the full weight breakdown.How to Check Yours#
Start by running your pages through a structured data testing tool. Google's Rich Results Test and Schema.org's validator both parse your markup and report errors. Check a representative sample of pages, not just your homepage. Common issues include missing required properties, mismatched data (markup says one price while the page shows another), and outdated schema types. Your AgentReady™ scan provides a per-page breakdown of schema issues. Look for pages with zero markup first — those are the biggest opportunities. Then address pages where markup is present but incomplete or invalid. Pay special attention to your most important pages: landing pages, product pages, and key content pieces.
How to Improve#
Start with the schema types that match your content. For blogs and articles, implement Article or BlogPosting. For e-commerce, implement Product with full property coverage. For service businesses, implement LocalBusiness and Service. Add Organization schema to your homepage and BreadcrumbList to all pages. Use JSON-LD format, which is the preferred method for both search engines and AI systems. Validate every implementation before deploying. Automate schema generation through your CMS when possible to maintain consistency at scale. For large sites, focus on template-level implementation so every page of a given type gets the correct markup automatically. Review your schema quarterly as Schema.org releases new types and properties. For related improvements, check Content Quality and Topic Clarity.
Example: Article JSON-LD
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Optimize for AI Discovery",
"author": {
"@type": "Person",
"name": "Jane Smith",
"url": "https://example.com/authors/jane-smith"
},
"datePublished": "2026-03-01",
"dateModified": "2026-03-09",
"publisher": {
"@type": "Organization",
"name": "Example Inc",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"description": "A practical guide to structured data and AI readiness.",
"mainEntityOfPage": "https://example.com/guides/ai-discovery"
}json
Related Pages
Frequently Asked Questions
Which schema format should I use?
JSON-LD is the recommended format. It is the easiest to implement, the easiest to validate, and the format preferred by major search engines and AI systems. Microdata and RDFa are also valid but harder to maintain.
Does adding more schema types always improve my score?
No. Only relevant schema types contribute positively. Adding Product markup to an article page or Event markup to a static page will not help and may create validation errors that hurt your score.
How many pages need schema for a good score?
Ideally, every indexable page should have at least one relevant schema type. The factor evaluates coverage across your site, so a few well-marked pages surrounded by many bare pages will pull your score down.
Was this page helpful?