schema.org/CollectionPageNo rich result
CollectionPage schema
A page whose purpose is to collect and link to other pages.
Where to use it
Blog index, category pages, glossary index.
A complete example
Valid as written, with every required property and the recommended ones that carry real information.
collection-page.json
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"url": "https://www.seoforsolos.com/example",
"name": "Acme Reference",
"description": "A one sentence description that restates its own subject.",
"isPartOf": {
"@id": "https://www.seoforsolos.com/#website"
},
"mainEntity": {
"@type": "Person",
"name": "A Real Person",
"url": "https://www.seoforsolos.com/about"
},
"breadcrumb": {
"@id": "https://www.seoforsolos.com/example#breadcrumb"
}
}Properties
| Property | Status |
|---|---|
url | Required |
name | Required |
description | Recommended |
isPartOf | Recommended |
mainEntity | Recommended |
breadcrumb | Recommended |
The three mistakes this type attracts
- 01Using CollectionPage for a page with substantial original content of its own.
- 02Omitting mainEntity, which leaves the collection empty.
- 03Duplicating the ItemList both inline and as a separate node.
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 CollectionPage schema type for?
A page whose purpose is to collect and link to other pages. Use it on: blog index, category pages, glossary index.
Which CollectionPage properties are required?
CollectionPage requires 2 properties: url, name. It also recommends 4: description, isPartOf, mainEntity, breadcrumb.
Does CollectionPage produce a rich result?
CollectionPage 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 CollectionPage mistake?
The most common CollectionPage mistake is: Using CollectionPage for a page with substantial original content of its own.