RANKNIBBLER

// FREE ON-PAGE SEO CHECKER

What Is Structured Data?

Structured data is code that you add to your web pages to help search engines understand your content better. It uses a standardised format called Schema.org to describe things like products, articles, recipes, events, businesses, and FAQs in a way that search engines can parse programmatically.

When Google understands your content through structured data, it can display rich results — enhanced search listings with star ratings, prices, FAQ dropdowns, recipe cards, event dates, and more. These rich results stand out visually and typically get higher click-through rates.

Types of Rich Results

Schema TypeRich ResultBest For
ArticleTop stories, article carouselsBlog posts, news articles
ProductPrice, availability, star ratingsE-commerce product pages
FAQExpandable Q&A dropdownsFAQ pages, informational content
HowToStep-by-step instructionsTutorial and guide pages
RecipeImage, cooking time, ratingsRecipe pages
LocalBusinessMap, hours, phone numberLocal business websites
OrganizationKnowledge panel, social linksCompany websites
BreadcrumbListBreadcrumb trail in resultsAny page with breadcrumbs

JSON-LD: The Recommended Format

Google recommends using JSON-LD (JavaScript Object Notation for Linked Data) for structured data. It is added as a <script> tag in the HTML head and does not affect the visible content of the page.

Here is a simple example for an Article:

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to Improve Your SEO",
  "author": {"@type": "Person", "name": "Jane Smith"},
  "datePublished": "2026-03-15",
  "description": "A complete guide to improving SEO."
}
</script>

How to Add Structured Data

  1. Identify which schema type fits your page (Article, Product, FAQ, etc.)
  2. Write the JSON-LD code using Schema.org documentation
  3. Add the script tag to your page's HTML head
  4. Test with Google's Rich Results Test tool
  5. Verify with the RankNibbler structured data checker

Most CMS platforms have plugins that generate structured data automatically — Yoast SEO and Rank Math for WordPress, for example.

Check your site now: Run a free audit on the RankNibbler homepage to see how your page scores across 30+ SEO checks.

Last updated: March 2026