Implement comprehensive author markup
Uses structured data to provide machine-readable metadata about content authors.
- Use JSON-LD to provide detailed metadata about the author (Person or Organization)
- Include properties like `name`, `url`, `sameAs`, and `jobTitle`
- Connect author markup to the main `Article` or `WebPage` schema
Rule Details
Structured author information reduces ambiguity for search engines and helps them verify the author's professional standing.
Code Example
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jane Smith",
"jobTitle": "Senior Security Researcher",
"url": "https://example.com/authors/jane-smith",
"sameAs": [
"https://www.linkedin.com/in/janesmith",
"https://twitter.com/janesmith"
],
"worksFor": {
"@type": "Organization",
"name": "SecurityCorp"
}
}
</script>Why It Matters
- Entity Recognition: Helps search engines connect your content to a specific, recognized person in the real world.
- Knowledge Graph: Can help your authors appear in Google's Knowledge Graph, increasing their perceived authority.
- Cross-Site Authority: If an author is recognized as an expert on other sites, their authority can "transfer" to your site.
- Machine Readability: Ensures that search engines don't have to guess who the author is or what their credentials are.
Exceptions
- Necessary utility or compliance pages can be intentionally brief and should not be judged by the same editorial-depth expectations as ranking-focused content.
- AI-assisted drafting is not a failure by itself; flag unsupported claims, missing editorial review, or low-originality output instead.
- When a page has both trust-signal issues and crawl/index problems, make the page eligible to rank first and then improve the content quality signals.
Standards
- Use these references as the standard for the final search-facing HTML, metadata, and crawl behavior.
- Check the implementation against Google Search Central: Search Essentials before treating the rule as satisfied.
- Check the implementation against Google Search Central documentation before treating the rule as satisfied.
Verification
Automated Checks
- Inspect rendered HTML and HTTP headers to confirm the expected metadata or crawlability signal is present.
- Test the affected URL with Google Search Console or equivalent tooling where relevant.
- Re-crawl a representative page set after deployment.
Manual Checks
- Confirm the change does not create conflicting canonical-url, robots, or structured-data signals.
Use with AI
Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.
Check
Verify implementation
Verify that the page includes structured data identifying the author with relevant metadata.
Fix
Auto-fix issues
Add a `Person` or `Organization` schema to your JSON-LD block and link it to the `author` property of your content.
Explain
Learn more
Explain how 'sameAs' properties in schema help search engines connect an author to their other authoritative profiles.
Review
Code review
Review metadata generation, rendered HTML, structured data, and response headers related to Implement comprehensive author markup. Flag exact routes or templates where search-facing output violates the rule, and describe how to verify the final page output.