Seoxpert.io
lowBest Practices

Date-Referenced Content Missing Article Schema

Date-specific content lacks Article schema, missing freshness signals for search engines.

By Seoxpert Editorial · Published

Why it matters

Google relies on Article schema's datePublished and dateModified to evaluate content freshness. Marking date-referenced content with this schema helps your pages appear more relevant for time-sensitive queries and can display date labels in search results, improving click-through rates.

Impact

Pages may not rank as well for fresh queries or display date labels in SERPs, reducing visibility and engagement.

How it's detected

An automated crawler checks for date references in content and verifies the presence of Article or BlogPosting schema with required date fields.

Common causes

  • Omitting structured data for articles or blog posts
  • Using generic schema types instead of Article or BlogPosting
  • Forgetting to add datePublished and dateModified fields
  • CMS templates lacking schema markup for posts

How to fix it

Add Article or BlogPosting schema using JSON-LD to each date-referenced page. Include both datePublished and dateModified fields with ISO 8601 date values. Update dateModified whenever the content changes to maintain accuracy.

Code examples

Missing Article schema (problem)

<!-- No Article or BlogPosting schema present -->

Correct Article schema (fix)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to Prune Roses in Spring",
  "datePublished": "2024-03-15",
  "dateModified": "2024-06-01"
}
</script>

FAQ

What content types require Article or BlogPosting schema?

Any page with date-specific content, such as news articles, blog posts, or guides, should use Article or BlogPosting schema.

Is it necessary to update dateModified every time I edit a post?

Yes, update dateModified whenever you make substantial changes to the content to reflect its freshness.

Can I use Microdata or RDFa instead of JSON-LD?

Yes, but JSON-LD is recommended by Google for ease of implementation and maintenance.

What happens if I only include datePublished but not dateModified?

Google may not accurately reflect updates, and you miss out on signaling content freshness for revised pages.

Found this issue on your site?

Run a scan to see if Date-Referenced Content Missing Article Schema affects your pages.

Scan my website →