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
| Property | Status |
|---|---|
name | Required |
url | Recommended |
jobTitle | Recommended |
description | Recommended |
image | Recommended |
sameAs | Recommended |
worksFor | Recommended |
The three mistakes this type attracts
- 01Inventing credentials, a headshot or social profiles.
- 02A bare string byline where a Person node with a URL would resolve.
- 03Reusing one Person @id for several different people.
Related types
Where this appears in the playbook
- Structured data: what each type is for and which ones earned their place.
- The schema graph: composing types into one graph with stable identifiers.
- One JSON-LD script per page, holding one @graph
- Stable @id anchors that cross-reference rather than duplicate
- Optional fields are omitted, never emitted as empty strings
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.