term article-schemafield SEOread 7 min read

Article Schema

Article Schema is a type of structured data markup using schema.org vocabulary to describe articles for search engines. It helps content appear in rich results like top stories carousels or Google News.

7 min readSEO
Reviewed context
Term snapshot

A type of structured data markup using schema.org vocabulary to describe articles for search engines.

Search context

Webmasters reading about improving content visibility in search engine results.

01What It Is and How It Works

Article Schema is part of the broader schema.org initiative, which provides a common vocabulary for webmasters to add structured data to their HTML. When properly implemented, it allows search engines to parse key article metadata like headline, author, publish date, and image. This data is typically embedded using JSON-LD, Microdata, or RDFa formats. For example, a news article about a weather event can include properties like articleBody, datePublished, and author to give context to search algorithms. Google uses this information to enhance search visibility, potentially displaying the article in specialized features like the Top Stories carousel or Google News. The schema does not alter the page's appearance for users but improves how search engines interpret and rank the content.

Article Schema is code added to a webpage that tells Google and other search engines what an article is about, who wrote it, and when it was published.

02What to Do About It

To implement Article Schema, first identify whether your content qualifies as an article under Google's guidelines. News articles, blog posts, and informational pieces are typical candidates. Add the required properties to your page's HTML using JSON-LD format, which is the most common method. At minimum, include headline, datePublished, and author. For news articles, also add image, publisher, and dateModified. Validate your markup using Google's Rich Results Test or the Structured Data Testing Tool. If your site uses a CMS like WordPress, plugins such as Yoast SEO or Rank Math can automate schema generation. Regularly audit your site to ensure new content includes proper markup and that no errors are flagged in Search Console.

  • Use JSON-LD format for easier implementation
  • Include required properties: headline, datePublished, author
  • Add publisher and image for news articles
  • Validate markup with Google's Rich Results Test
  • Monitor Search Console for structured data errors

03How It Is Measured or Noticed

Article Schema effectiveness is primarily measured through search engine results and tools. Look for rich snippets in Google search results, such as bylines, dates, or image thumbnails next to article links. Google Search Console provides structured data reports that show detected markup, errors, and eligible pages for rich results. The 'Enhancements' section in Search Console specifically tracks Article rich results. Additionally, the Rich Results Test tool allows you to paste a URL and see if your markup is valid and eligible for features like Top Stories. Monitoring impressions and clicks on pages with Article Schema can also indicate improved visibility, though this requires baseline data for comparison.

04Common Mistakes

Several pitfalls can prevent Article Schema from working correctly. Omitting required properties like author or datePublished will disqualify the markup. Using incorrect nesting or invalid property values (e.g., a string instead of a date object for datePublished) triggers errors. Confusing Article Schema with other types like NewsArticle or BlogPosting can lead to mismatched expectations. Some sites also forget to update the dateModified field when content changes, which affects freshness signals. Finally, testing markup on non-public URLs or staging environments may yield false negatives, as Google requires accessible pages to process structured data.

  • Missing required properties like author or datePublished
  • Using invalid date formats for datePublished
  • Confusing Article with NewsArticle or BlogPosting
  • Not updating dateModified for revised content
  • Testing on non-public or staging URLs

05Limits

Article Schema has specific limitations. It applies only to content that meets Google's definition of an article—original, time-sensitive content with a clear author and publication date. Static pages, product descriptions, or event listings are not eligible. Additionally, Article Schema is not the same as NewsArticle Schema, which is a subtype with stricter requirements for news publishers. Google also limits rich results to a subset of pages, so even valid markup may not always appear in search features. Furthermore, Article Schema does not guarantee higher rankings; it only enables enhanced presentation if the content is already relevant and authoritative.

06Worked Example

Here is a JSON-LD example for a blog post about climate change impacts:

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Rising Sea Levels Threaten Coastal Cities",
"datePublished": "2023-10-15T08:00:00+00:00",
"author": {
"@type": "Person",
"name": "Jane Smith"
},
"image": "https://example.com/images/sea-level-rise.jpg",
"publisher": {
"@type": "Organization",
"name": "Environmental Insights",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"dateModified": "2023-10-15T08:00:00+00:00"
}
</script>

Frequently asked questions

How is Article Schema different from regular SEO meta tags?

Article Schema is structured data markup added to HTML, while meta tags are separate elements in the page head. Meta tags describe the page for search engines, but Article Schema describes the content type and enables rich results like top stories carousels. They serve different purposes and work independently.

Do I need Article Schema if my site already ranks well in Google?

It depends on whether you want to appear in rich results like top stories carousels or Google News features. Standard SEO helps with organic rankings, but Article Schema specifically targets enhanced visual placements in search. If your content qualifies as news or timely articles, implementing it can increase visibility beyond traditional blue links.

How do I actually implement Article Schema on my website?

You add JSON-LD structured data to your article pages using schema.org vocabulary. First identify whether your content qualifies under Google's article guidelines, then insert the appropriate markup in the HTML head or body. Many content management systems offer plugins or built-in tools to automate this process.

Does Article Schema still work with Google's latest algorithm updates?

Yes, Article Schema remains supported and effective for qualifying content. Google continues to use structured data to power rich results, though the specific appearance and eligibility requirements evolve. As long as your implementation follows current guidelines, it can still generate enhanced search listings.

What happens if I implement Article Schema incorrectly?

Incorrect implementation can cause your structured data to be ignored, preventing rich result eligibility. You would notice this through Google Search Console errors or missing rich result appearances in search. In severe cases, misuse could lead to manual actions if it violates Google's spam policies.

How long does it take for Article Schema to show results in search?

It typically takes days to weeks for Article Schema changes to appear in search results after Google crawls and indexes the updated pages. During this time, monitor Google Search Console for structured data coverage reports and rich result status. Track performance through increased impressions and clicks in enhanced search positions.

Asked out loud

spoken, not typed

The same term in the words somebody uses speaking to an assistant rather than typing into a box — written from the situation, which is why each one carries the situation it came from.

I'm editing a news story on my phone right now and need to make it show up in Google's top stories. What should I add to the page?

You need to add structured data markup using schema.org vocabulary to your article page. This tells Google your content is an article eligible for rich results like top stories carousels. Most CMS platforms have plugins that handle this automatically.

on the movea deadline
My client says their articles aren't appearing in rich results even though they look fine. What could be wrong?

The most common issue is missing or incorrect structured data markup on the article pages. Check that you've implemented Article Schema properly using JSON-LD and that all required properties are present. You can validate this using Google's Rich Results Test tool.

the thing in front of themwhat actually hurts
I just published a breaking story and need it in Google News fast. How do I make sure the schema is correct?

Add JSON-LD structured data with the Article schema type to your breaking news page immediately after publishing. Ensure you include required properties like headline, image, datePublished, and author. Then submit the URL through Google Search Console to speed up indexing.

urgencya deadline

More in SEO