Article
Blog posts, news articles, and editorial content
About Article Schema
The Article schema type is used to mark up blog posts, news articles, and editorial content. Implementing this structured data helps search engines understand your content better and may qualify your pages for rich results in Google Search.
Properties
* Required Properties
β Recommended Properties
Best Practices
- β Validate your JSON-LD with Googleβs Rich Results Test before publishing.
- β Populate author, datePublished to unlock enhanced snippets.
- β Keep structured data in sync with the visible content on the page.
Common Pitfalls
- β οΈAvoid mixing multiple schema syntaxes for the same entity.
- β οΈDo not include claims that the user cannot see or confirm on the page.
- β οΈRemember to update dateModified whenever the content changes.
Real-World Examples
See how top-ranking websites implement Article structured data:
NYTimes Article Implementation
nytimes.comThe New York Times uses comprehensive Article schema with multiple authors, publication dates, and article sections for enhanced search visibility.
Medium Blog Posts
medium.comMedium implements BlogPosting schema with author profiles, reading time estimates, and social engagement metrics.
TechCrunch News Articles
techcrunch.comTechCrunch uses NewsArticle schema with category tags, article bodies, and video content embedded in their structured data.
JSON-LD Example
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Implement Schema.org Structured Data",
"image": "https://example.com/article-image.jpg",
"author": {
"@type": "Person",
"name": "Jane Doe"
},
"publisher": {
"@type": "Organization",
"name": "Example Publishing",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png"
}
},
"datePublished": "2025-01-15",
"dateModified": "2025-01-20",
"description": "A comprehensive guide to implementing Schema.org structured data on your website."
}Looking for more tools? TryElementiafor interactive periodic table and chemistry reference.