You are here for this line in chapter 10 of the book:
☐ Add Person schema for every author using an SEO plugin or developer; link from Article schema and validate before publishing.
Chapter 10, C for Credibility
Person, for every author
Put this on each author's profile page. The @id is what article pages point to.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://www.example.com.au/team/jane-smith#person",
"name": "Jane Smith",
"jobTitle": "Senior Consultant",
"url": "https://www.example.com.au/team/jane-smith",
"image": "https://www.example.com.au/team/jane-smith.jpg",
"worksFor": { "@id": "https://www.example.com.au/#organization" },
"knowsAbout": ["ecommerce logistics", "supply chain"],
"sameAs": ["https://www.linkedin.com/in/janesmith"]
}
</script>
Article, pointing at its author
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "The article's title, as it appears on the page",
"datePublished": "2026-09-01",
"dateModified": "2026-09-20",
"author": { "@id": "https://www.example.com.au/team/jane-smith#person" },
"publisher": { "@id": "https://www.example.com.au/#organization" }
}
</script>