What Is Article Schema? The Complete Guide (2026)

Saar Twito9 min read
Saar Twito
Saar TwitoFounder & SEO Engineer

Hi, I'm Saar - a software engineer, SEO specialist, and lecturer who loves building tools and teaching tech.

View author profile →

What Is Article Schema?

Article schema is a type of structured data — based on the Schema.org Article vocabulary — that explicitly tells search engines and AI systems a page contains editorial content. When correctly implemented, it makes pages eligible for Google's Top Stories carousel and Discover feed, and improves AI citation rates by up to 40% (industry data, 2025).

TL;DR

  • What it is: JSON-LD that identifies a page as editorial content (article, news story, or blog post).
  • Required properties: headline, image, datePublished, author.
  • What it unlocks: Google Top Stories carousel, Discover feed, and higher AI citation rates (up to +40%).
  • Three subtypes: Article (generic), NewsArticle (journalism), BlogPosting (informal blog).
  • Validate with: Greadme — it checks all required and recommended fields automatically.

Article vs. NewsArticle vs. BlogPosting — Which Type Should You Use?

The Article type has two commonly used subtypes. Choosing the right one signals content style to Google News, AI systems, and the Top Stories algorithm:

TypeBest forGoogle News eligible?Top Stories eligible?
ArticleLong-form guides, tutorials, educational contentNoLimited
NewsArticleJournalism, reporting on current eventsYesYes
BlogPostingInformal blog posts, opinions, commentaryNoNo

Rule of thumb: Use NewsArticle if you run a news outlet and the content reports on a current event. Use BlogPosting for personal blogs and opinion pieces. Use Article for everything else — guides, how-tos, and reference content. All three share identical required and recommended properties; the distinction is about content classification, not implementation.

What Rich Results Does Article Schema Unlock?

According to Google's official structured data documentation, Article schema makes pages eligible for:

  • Top Stories carousel — the horizontal row of articles that appears at the top of mobile SERPs for news-related queries. Requires NewsArticle or Article, plus image, datePublished, and author.
  • Google Discover — the personalized content feed on Android and the Chrome new tab page. Article schema helps Discover understand content type and relevance. Google case studies show Discover traffic can account for 3–5× search traffic for media publishers.
  • AI Overviews citations — Google's AI Overview extracts author, headline, datePublished, and publisher directly from Article schema when attributing sources.

Article schema alone does not guarantee placement in Top Stories. Domain authority, content freshness, and indexing status all factor in — but the schema is a prerequisite.

Required Properties

Based on Google's documentation, these four properties are recommended for rich result eligibility. Missing any one of them silently disqualifies the page:

PropertyTypeNotes
headlineTextMust match (or closely match) the visible <h1>. Keep it concise — long headlines may be truncated on some devices.
imageImageObject or URLAt least one image required. Google recommends providing 1:1, 4:3, and 16:9 aspect ratio versions with a minimum of 50,000 pixels.
datePublishedDateTimeISO 8601 format only: 2026-05-21 or 2026-05-21T08:00:00+00:00.
authorPerson or OrganizationMust be an object — plain strings ("author": "Jane") fail Greadme's validation. Include name(no titles or honorifics like "Dr." — name only) and either url or sameAs linking to the author's profile page. List multiple authors as separate objects, not merged into one.

Recommended Properties

These properties don't affect basic eligibility, but significantly improve AI citation accuracy, freshness scoring, and index quality:

PropertyWhy it matters
dateModifiedTells Google when content was last updated. Critical for freshness signals — a stale dateModified suppresses Discover distribution.
publisherAn Organization with name and logo. Required by Google News and used by AI systems to attribute sources.
descriptionA short summary of the article. AI systems extract this for citation snippets when the full body isn't available.
mainEntityOfPageA WebPagewith the canonical URL. Links the schema to the page's identity in Google's Knowledge Graph.

Full Implementation Example

Place this inside a <script type="application/ld+json">tag in your page's <head>:

Article (guide or tutorial)

{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "What Is Article Schema? The Complete Guide",
  "image": [
    "https://example.com/article-1x1.jpg",
    "https://example.com/article-4x3.jpg",
    "https://example.com/article-16x9.jpg"
  ],
  "datePublished": "2026-05-21T08:00:00+00:00",
  "dateModified": "2026-05-21T08:00:00+00:00",
  "author": {
    "@type": "Person",
    "name": "Jane Smith",
    "url": "https://example.com/authors/jane-smith"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Example Blog",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  },
  "description": "Learn how to implement Article schema to unlock Top Stories and improve AI citations.",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.com/blog/what-is-article-schema"
  }
}

For NewsArticle, replace "@type": "Article" with "@type": "NewsArticle". All other properties are identical.

Author as an Organization (for team-authored content)

"author": {
  "@type": "Organization",
  "name": "The Editorial Team",
  "url": "https://example.com/about"
}

Use Organization as author only when no individual author can be identified. Google prefers Person because it enables stronger E-E-A-T signals (author expertise and experience).

The 7 Most Common Article Schema Mistakes

1. Missing image

Article schema without an image property is ineligible for Top Stories and Discover. This is the single most common reason for failed rich results — and the easiest to fix.

2. Only one image aspect ratio

Providing a single image limits where Google can show your article. Top Stories prefers 16:9, Discover sometimes uses 1:1. Providing all three ratios (1:1, 4:3, 16:9) ensures eligibility across all placement surfaces.

3. Wrong date format

"datePublished": "May 21, 2026" fails validation. The correct format is ISO 8601: "2026-05-21T08:00:00+00:00". If you don't know the exact time, "2026-05-21" (date only) is also valid. Greadme flags this as a hard error.

4. Author as a plain string

"author": "Jane Smith" is technically invalid — author must be a Person or Organizationobject. Google's parser accepts the string in some cases, but Greadme flags it as an error and it is ignored by AI extraction systems.

5. Stale dateModified

Leaving dateModified unchanged after updating content tells Google the article is older than it is. Always update this property when you make meaningful changes — Google uses it for freshness scoring in Discover and AI Overviews.

6. Headline doesn't match the H1

If "headline": "10 SEO Tips" appears in JSON-LD but the <h1>reads "Ten Tips to Improve Your Website's SEO," Google may treat this as a mismatch. Keep them consistent or very close.

7. Missing publisher logo

The publisher object requires a logo as an ImageObject with a url property. Missing it triggers a warning in Greadme and disqualifies the page from Google News AMP surfaces.

How Article Schema Affects AI Visibility

Generative AI search engines (ChatGPT Search, Perplexity, Google AI Overviews) parse Article JSON-LD before reading prose. When citing an article, they pull these fields directly from the schema:

  • author.name — to attribute the finding to a named expert, strengthening E-E-A-T signals in AI responses
  • datePublished / dateModified — to assess content freshness and decide whether to include or skip the source
  • publisher.name — to attribute the source organization in the citation
  • headline — to title the citation in the AI response

Without Article schema, AI systems must infer this information from prose — and they frequently get it wrong or skip the citation entirely. Industry data from 2025 shows pages with properly implemented Article schema achieve 30–40% higher AI citation rates than unmarked pages.

How to Validate Your Article Schema

The fastest way to validate Article schema is to run your URL through Greadme. Greadme checks all required and recommended Article fields automatically — including headline, image, datePublished, author, publisher, date format validity, and image aspect ratios — and gives you a scored report with actionable fixes.

For article pages specifically, Greadme's Content Quality Audit goes a step further than schema validation alone. It uses AI to score the page across seven dimensions that directly affect how Google and AI search engines evaluate editorial content:

  • E-E-A-T signals — whether the page demonstrates first-hand experience, author expertise, and trustworthiness
  • Heading structure — whether H1–H3 headings are descriptive, correctly ordered, and reflect the content sections
  • Semantic HTML — whether the page uses HTML5 elements (<article>, <section>, <header>) that AI crawlers parse more reliably than <div> soup
  • Content structure — word count, paragraph length, use of lists, tables, and images with alt text
  • Schema markup — whether Article or BlogPosting schema is present and well-implemented
  • Readability and depth — whether the content goes beyond surface-level coverage and provides original insight
  • Meta and Open Graph — whether the meta description and OG tags are set correctly for social sharing and AI citation

Running the Content Quality Audit after adding Article schema gives you the full picture: not just whether the JSON-LD is technically valid, but whether the page itself is strong enough to earn the rich results and AI citations the schema makes possible.

FAQ

Is Article schema a Google ranking factor?

No — Google has stated that structured data itself is not a ranking signal. What it does is unlock rich results (Top Stories, Discover) which improve click-through rate, and helps Google's entity-understanding systems identify the author and publisher — both of which indirectly improve performance.

Do I need Article schema on every blog post?

Yes, if you want every post to be eligible for Top Stories and AI citations. It's low-effort to add via a template and high-reward — there's no downside to including it on every editorial page.

Does Article schema work without an image?

The schema is technically parseable without image, but the page will not qualify for Top Stories or Discover. Google explicitly requires at least one image for those surfaces. Greadme flags a missing image as a warning and deducts from the schema score.

How many image aspect ratios should I provide?

Google recommends providing all three: 1:1, 4:3, and 16:9. Some placement surfaces prefer landscape (16:9), others square (1:1). Providing all three makes the article eligible for the maximum number of surfaces with no extra cost.

Can I use Article schema on a product page or landing page?

No. Article schema is for editorial content — articles, guides, news stories. For product pages, use Product schema. For landing pages that describe your business, use WebPage or Organization. Applying Article schema to non-editorial pages is a mismatch that confuses Google's classifier.

Can I combine Article schema with other schema types?

Yes — and you usually should. A blog post typically benefits from Article + BreadcrumbList + Organization (sitewide on the homepage). Use separate <script> tags or a single @graph array. Do not have two Article blocks with different headline values on the same page.

Should Article schema go in <head> or <body>?

Either is valid — Google's crawler reads both. Placing it in <head> is the convention and preferred for server-rendered implementations. Avoid injecting it via client-side JavaScript on pages that need to be indexed quickly — some crawlers don't execute JavaScript fully and may miss late-added scripts.

What's the difference between Article and WebPage schema?

Article is a subtype of CreativeWork and signals editorial, authored content with a publication date. WebPage is the generic schema for any web page. Use Article when the page is genuinely an authored piece of writing with a clear author and publication date. Use WebPagefor pages that don't fit that description.

Conclusion

Article schema is one of the most impactful and lowest-effort structured data implementations you can make. Four properties — headline, image, datePublished, and author — are enough to unlock Top Stories eligibility and significantly boost AI citation rates. Add publisher, dateModified, and description to complete the implementation. Validate with Greadme to catch errors before they silently cost you rich results.