Article Schema Generator

Generate Article JSON-LD with author and dates.

JSON-LD
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "10 Tips for Faster Web Performance",
  "image": [
    "https://example.com/article.jpg"
  ],
  "author": {
    "@type": "Person",
    "name": "Sam Rivera"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Web Weekly",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  },
  "datePublished": "2026-02-01",
  "dateModified": "2026-02-10",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.com/articles/web-performance"
  }
}
</script>

Free Article schema generator. Fill in the headline, author, publisher, publish and modified dates and image to build valid Article JSON-LD structured data for blog posts and news pages. Generated in your browser.

How to use the Article Schema Generator

  1. 01Enter the headline, author and publisher.
  2. 02Add the publish and modified dates and a featured image.
  3. 03Copy the Article JSON-LD into your post.

Frequently asked questions

Do I need both datePublished and dateModified?

datePublished is recommended for every article. Include dateModified when the content has been meaningfully updated, so search engines can show the freshest date.

What image should I provide?

Use a high-resolution image directly related to the article, hosted at a crawlable URL. Google prefers images of at least 1200 pixels wide for rich results.