SEO for Solos
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

CollectionPage properties
PropertyStatus
urlRequired
nameRequired
descriptionRecommended
isPartOfRecommended
mainEntityRecommended
breadcrumbRecommended

The three mistakes this type attracts

  1. 01Using CollectionPage for a page with substantial original content of its own.
  2. 02Omitting mainEntity, which leaves the collection empty.
  3. 03Duplicating the ItemList both inline and as a separate node.

Related types

Where this appears in the playbook

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.