Generate Article schema markup in JSON-LD format. Create structured data for articles with author, publish date, and publisher information for rich news results.
Article schema markup helps Google understand your article content and display it in rich results, Top Stories, and Google News. It can show the article title, image, author, publish date, and publisher logo. This is especially important for news publishers and blogs seeking visibility in Google News and Discover.
Article Schema = { @type: Article, headline, author, datePublished, publisher: { name, logo } }Required: headline (title), author (Person or Organization), datePublished, publisher (with name and logo). Recommended: dateModified, image, description, mainEntityOfPage. The publisher.logo must be an ImageObject with a URL to a logo at least 112×112px.
| Input | Output |
|---|---|
| Title: "Breaking News", Author: "Jane Smith", Published: 2024-01-15 | {"@context":"https://schema.org","@type":"Article","headline":"Breaking News","author":{"@type":"Person","name":"Jane Smith"},"datePublished":"2024-01-15"} |
| Title: "SEO Guide", Publisher: "TechBlog", Logo: techblog.com/logo.png | {"@context":"https://schema.org","@type":"Article","headline":"SEO Guide","publisher":{"@type":"Organization","name":"TechBlog","logo":{"@type":"ImageObject","url":"techblog.com/logo.png"}}} |
| Title: "How to Code", Author: "Dev Team", Published: 2024-03-01 | {"@context":"https://schema.org","@type":"Article","headline":"How to Code","author":{"@type":"Person","name":"Dev Team"},"datePublished":"2024-03-01"} |