SEO for Solos
schema.org/PersonNo rich result

Person schema

A named individual, used for author bylines and team pages.

Where to use it

Author bylines, about pages, team pages.

A complete example

Valid as written, with every required property and the recommended ones that carry real information.

person.json
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Acme Reference",
  "url": "https://www.seoforsolos.com/example",
  "jobTitle": "Engineer",
  "description": "A one sentence description that restates its own subject.",
  "image": "https://www.seoforsolos.com/opengraph-image",
  "sameAs": [
    "https://www.seoforsolos.com"
  ],
  "worksFor": {
    "@id": "https://www.seoforsolos.com/#organization"
  }
}

Properties

Person properties
PropertyStatus
nameRequired
urlRecommended
jobTitleRecommended
descriptionRecommended
imageRecommended
sameAsRecommended
worksForRecommended

The three mistakes this type attracts

  1. 01Inventing credentials, a headshot or social profiles.
  2. 02A bare string byline where a Person node with a URL would resolve.
  3. 03Reusing one Person @id for several different people.

Related types

Where this appears in the playbook

Questions

What is the Person schema type for?

A named individual, used for author bylines and team pages. Use it on: author bylines, about pages, team pages.

Which Person properties are required?

Person requires one property: name. It also recommends 6: url, jobTitle, description, image, sameAs, worksFor.

Does Person produce a rich result?

Person does not produce a Google rich result. It is still worth shipping, because its value is entity resolution and answer extraction rather than search result presentation.

What is the most common Person mistake?

The most common Person mistake is: Inventing credentials, a headshot or social profiles.