The schema implementation matters more than people think.
Minimum Person schema for author pages:
{
"@type": "Person",
"name": "Author Name",
"jobTitle": "Senior Content Strategist",
"description": "Expert in B2B content marketing with 10+ years experience",
"url": "https://yoursite.com/author/author-name/",
"sameAs": [
"https://linkedin.com/in/authorname",
"https://twitter.com/authorname"
],
"worksFor": {
"@type": "Organization",
"name": "Your Company"
}
}
On each article, link to the author:
{
"@type": "Article",
"author": {
"@type": "Person",
"@id": "https://yoursite.com/author/author-name/"
}
}
Why sameAs matters:
The sameAs property connects your author to their verified profiles on other platforms. AI systems use this to verify the author exists and has consistent credentials. A LinkedIn profile that matches your author page increases trust.
Testing your implementation:
Use Google’s Rich Results Test to validate. If your Person schema shows correctly, AI systems can parse it too.