The Comprehensive Guide to Article, BlogPosting & NewsArticle Schema Markup
Comprehensive Technical Guide & Best Practices
1Choosing the Right Subtype: Article vs. BlogPosting vs. NewsArticle
Schema.org provides multiple specialized subtypes under the base Article class. Selecting the most accurate subtype helps search engine crawlers (like Googlebot and Bingbot) understand content context and eligibility for rich SERP features:
- BlogPosting (Recommended for Blogs): Represents a specific post published within an ongoing weblog or company blog. Ideal for technical tutorials, engineering deep dives, opinion pieces, and how-to guides. Google treats
BlogPostingwith equal rich snippet eligibility asArticlewhile communicating clear blog taxonomy. - NewsArticle (For Journalistic & Time-Sensitive Coverage): Reserved for formal news stories, investigative reports, and current events published by news organizations. Content using
NewsArticlestructured data is evaluated for inclusion in Google News, Google Discover, and the Top Stories SERP carousel. - Article (Generic Fallback): A generic publication piece such as whitepapers, research summaries, documentation overviews, or corporate announcements that do not fit neatly into a blog or news feed structure.
- Use BlogPosting for tutorials, developer guides, and content marketing articles.
- Use NewsArticle for timely journalistic reporting and Google Top Stories eligibility.
- Use Article for corporate press releases, research whitepapers, and knowledgebase guides.
2Google's 2026 Structured Data Requirements & The 7 Core Properties
To qualify for Google Search rich features (including visual article cards, carousels, and Google Discover recommendations), Google Search Central enforces strict criteria across 7 core properties:
- headline: The title of the article. Google recommends keeping headlines under 110 characters without clickbait truncation.
- image: A single high-resolution image URL or an array of URLs. Images must be at least 1200 pixels wide and contain a minimum of 50,000 total pixels to qualify for large image Google Discover cards.
- datePublished: The exact date and optional time the article was first made publicly available in standard ISO 8601 format (e.g.,
2026-09-22T08:00:00+00:00). - dateModified: The date and time the content was significantly updated. Google requires
dateModifiedto be greater than or equal todatePublished. - author: Structured object declaring the content creator. Google strongly emphasizes explicit
PersonorOrganizationtyping with an attachedurlpointing to an author bio page. - publisher: The organization hosting the content, including a mandatory
logoobject containing a square or rectangular brand logo URL. - description: A concise summary of the article body used for snippet generation.
- Google requires headline, image, datePublished, dateModified, author, and publisher.
- Images must be at least 1200px wide for Google Discover large card inclusion.
- All dates must strictly adhere to ISO 8601 formatting.
3E-E-A-T & Google's Multi-Aspect Ratio Image Guidelines (16:9, 4:3, 1:1)
Google Search Central guidelines explicitly recommend providing multiple aspect ratio variants for every article image. Because search results and Discover cards are rendered across diverse viewport form factors (mobile feeds, desktop sidebars, tablet cards), supplying images in 16:9, 4:3, and 1:1 aspect ratios ensures Google displays crisp, uncropped imagery without automated distortion:
"image": [
"https://example.com/photos/16x9/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/1x1/photo.jpg"
]Furthermore, establishing transparent E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) signals requires linking author entities directly to verified profiles:
- Use
"@type": "Person"with an author bio URL (url: "https://example.com/authors/jane-doe") or social profile link. - Add
jobTitleto substantiate subject matter expertise. - Ensure the
publisher.logois hosted on an accessible HTTPS endpoint with valid image dimensions.
- Google recommends 3 image aspect ratios: 16:9, 4:3, and 1:1 for responsive SERP cards.
- Linking author URLs directly to bio pages strengthens organic E-E-A-T signals.
- All markup is generated 100% client-side with zero data logging or server transmission.