Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.
SEOHigh

Implement valid Article structured data

Validates that articles use the correct Schema.org properties for improved search visibility.

Utilities
Quick take
Typical fix time 15 min
  • Use Schema.org `Article`, `NewsArticle`, or `BlogPosting` types for content
  • Include required properties like `headline`, `image`, `datePublished`, and `author`
  • Format the data using JSON-LD for the best compatibility with search engines
Why it matters: Structured data helps your content appear as rich results (like Top Stories or rich snippets), significantly increasing click-through rates and visibility in search results.

Rule Details

Structured data provides explicit clues about the meaning of a page to search engines, enabling enhanced features in search results.

Code Example

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BlogPosting",
  "headline": "10 SEO Tips for 2024",
  "image": ["https://example.com/photos/16x9/photo.jpg"],
  "datePublished": "2024-01-05T08:00:00+08:00",
  "dateModified": "2024-01-05T09:20:00+08:00",
  "author": [{
      "@type": "Person",
      "name": "Jane Doe",
      "url": "https://example.com/profile/janedoe"
    }]
}
</script>

Why It Matters

  • Rich Results: Enables headlines, images, and author info to appear directly in search results.
  • Google Discover: Properly marked-up articles are much more likely to be featured in user-personalized feeds.
  • Author Attribution: Helps search engines connect the content to a specific author's entity.
  • CTR Improvement: Rich snippets often have a higher click-through rate than plain text results.

Exceptions

  • Only add or enforce schema types that the page can truthfully support; irrelevant structured data is worse than no structured data.
  • A technically valid schema block can still be misleading if the page content does not visibly back it up; audit rendered content and schema together.
  • If indexability, canonical-url, or main content quality is wrong, fix that foundation before optimizing schema details.

Standards

  • Use these references as the standard for the final search-facing HTML, metadata, and crawl behavior.
  • Check the implementation against Google Search Central: Search Essentials before treating the rule as satisfied.
  • Check the implementation against Google Search Central documentation before treating the rule as satisfied.

Verification

Automated Checks

  • Inspect rendered HTML and HTTP headers to confirm the expected metadata or crawlability signal is present.
  • Test the affected URL with Google Search Console or equivalent tooling where relevant.
  • Re-crawl a representative page set after deployment.

Manual Checks

  • Confirm the change does not create conflicting canonical-url, robots, or structured-data signals.

Use with AI

Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.

Check

Verify implementation

Verify that the page contains valid Article structured data with all required properties.

Fix

Auto-fix issues

Add a JSON-LD script block containing the `Article` schema with correct metadata for the current page.

Explain

Learn more

Explain how Article schema affects visibility in Google Discover, News, and standard search results.

Review

Code review

Review metadata generation, rendered HTML, structured data, and response headers related to Implement valid Article structured data. Flag exact routes or templates where search-facing output violates the rule, and describe how to verify the final page output.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

Google Search Console
search.google.comTool

Rules that often go hand-in-hand with this one.

Implement comprehensive author markup

Uses structured data to provide machine-readable metadata about content authors.

SEO
Use valid JSON-LD structured data

Validates JSON-LD structured data for syntax correctness, required properties, and schema.org compliance

SEO
Add structured data markup

Schema.org structured data (JSON-LD) is implemented for rich search results.

SEO
Add VideoObject schema to video pages

Checks for VideoObject structured data on pages containing video content to enable video rich results in Google Search.

SEO

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385