Seoxpert.io
mediumBest Practices

AI Search: Article Pages Missing Person Schema for Author

Article pages lack a Person/Author entity in their JSON-LD schema, making authorship unverifiable for AI search engines.

By Seoxpert Editorial · Published

Why it matters

AI-driven search engines and citation tools increasingly rely on structured author data to attribute content. Without a Person entity in your Article schema, your content is less likely to be cited or trusted by AI systems, reducing visibility and authority compared to competitors with proper author markup.

Impact

Content without verifiable author schema is less likely to be cited or surfaced by AI search engines.

How it's detected

An automated crawler scans Article-typed JSON-LD and flags pages missing an 'author' property with a Person entity.

Common causes

  • Omitting the 'author' property in Article JSON-LD markup.
  • Using only Organization or text strings as the author, not a Person entity.
  • Relying on visible bylines without updating structured data.
  • Using outdated schema templates that lack author details.

How to fix it

Edit your Article JSON-LD to include an 'author' property with a Person entity. Use the '@type': 'Person', include the author's full name, and link to authoritative profiles using the 'sameAs' array (e.g., LinkedIn, Twitter, Wikipedia). This enhances the credibility and citability of your content for AI search engines.

Code examples

Problem: Missing Person author in Article JSON-LD

{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to Optimize for AI Search"
  // No author property present
}

Fix: Add Person author to Article JSON-LD

{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to Optimize for AI Search",
  "author": {
    "@type": "Person",
    "name": "Jane Smith",
    "url": "https://yoursite.com/about/jane",
    "sameAs": [
      "https://linkedin.com/in/janesmith",
      "https://twitter.com/janesmith"
    ]
  }
}

FAQ

Why do AI search engines care about Person entities for authors?

AI engines use Person entities to verify authorship and improve attribution accuracy, which can increase your content's citability.

Can I use an Organization as the author instead of a Person?

For Article content, a Person entity is preferred for author. Organization can be used for publisher, but not as a substitute for author.

Is linking to social profiles in 'sameAs' necessary?

While not strictly required, linking to authoritative profiles in 'sameAs' boosts the credibility and authority of the author entity.

Will adding Person schema retroactively help old articles?

Yes, updating old articles with Person author schema can improve their attribution and visibility in AI-driven search results.

Found this issue on your site?

Run a scan to see if AI Search: Article Pages Missing Person Schema for Author affects your pages.

Scan my website →