Skip to main content
📰

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

@type
Must be "Article", "NewsArticle", or "BlogPosting"
Type: Text
headline
The headline of the article
Type: Text
image
URL of an image representative of the article
Type: URL or ImageObject

Recommended Properties

author
The author of the article
Type: Person or Organization
datePublished
Date the article was first published
Type: Date
dateModified
Date the article was last modified
Type: Date
publisher
The publisher of the article
Type: Organization

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? TryConvert Quickfor unit conversions.