Article — Blog Post
Schema markup for a standard blog post with author, publisher, and dates.
Rich Result: Article rich result (headline + image + date)
When to Use
Any blog post, editorial article, or guide page. Enables Article rich results with headline, image, and publication date in Google Search, and improves AI citation quality.
JSON-LD Code
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Fix Core Web Vitals in 2026",
"description": "A complete step-by-step guide to improving LCP, CLS, and INP scores with practical, actionable fixes.",
"image": {
"@type": "ImageObject",
"url": "https://example.com/images/core-web-vitals-guide.jpg",
"width": 1200,
"height": 630
},
"author": {
"@type": "Person",
"name": "Jane Smith",
"url": "https://example.com/author/jane-smith",
"sameAs": [
"https://twitter.com/janesmith",
"https://linkedin.com/in/janesmith"
]
},
"publisher": {
"@type": "Organization",
"name": "SEOCheckPilot",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/logo.png",
"width": 512,
"height": 512
}
},
"datePublished": "2026-01-15T09:00:00Z",
"dateModified": "2026-06-01T14:30:00Z",
"url": "https://example.com/blog/core-web-vitals-guide",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://example.com/blog/core-web-vitals-guide"
},
"wordCount": 3200,
"inLanguage": "en-US"
}
</script>Implementation Notes
Required: headline, image, author, publisher (with logo), datePublished. Google will not show a rich result without a valid publisher logo.
Validate & test this schema
Check your implementation against Google guidelines