Marketplace / Category Stack
Category/listing pages with ItemList and Product detail linkage, plus FAQ and breadcrumb context for filters/shipping.
When to use this stack
- Category or collection pages listing products or listings
- Marketplace verticals that need crawlable lists + product context
- Pages where FAQs cover shipping, returns, and selection guidance
What is included
Identifies the page as a category/collection landing.
Structures the list of products/items in the category.
Provides product-level context for featured/primary item(s).
Answers common questions on shipping, returns, and selection.
Provides navigation context for the category.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- description
- image
- itemListElement[].name
- itemListElement[].url
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- offers.availability
- offers.price
- offers.priceCurrency
- url
Recommended properties
- aggregateRating.ratingValue
- aggregateRating.reviewCount
- brand.name
- description
- itemListElement[].item
- itemListElement[].name
- itemListOrder
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- sku
Combined JSON-LD
Paste this as one script tag, then replace every example value with data from the live page.
[
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"@id": "https://www.example.com/headphones#collection",
"name": "Wireless Headphones",
"description": "Shop wireless headphones with ANC, long battery life, and fast charging.",
"url": "https://www.example.com/headphones"
},
{
"@context": "https://schema.org",
"@type": "ItemList",
"itemListOrder": "https://schema.org/ItemListOrderDescending",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "ACME Ultra Wireless Headphones",
"url": "https://www.example.com/products/ultra-headphones"
},
{
"@type": "ListItem",
"position": 2,
"name": "ACME Lite Wireless Headphones",
"url": "https://www.example.com/products/lite-headphones"
}
]
},
{
"@context": "https://schema.org",
"@type": "Product",
"@id": "https://www.example.com/products/ultra-headphones#product",
"name": "ACME Ultra Wireless Headphones",
"description": "Flagship over-ear Bluetooth headphones with ANC and 45-hour battery.",
"image": [
"https://www.example.com/images/ultra-headphones-front.webp"
],
"sku": "ACME-UW-01",
"brand": { "@type": "Brand", "name": "ACME Audio" },
"offers": {
"@type": "Offer",
"price": "199.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/products/ultra-headphones"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": 4.7,
"reviewCount": 128
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do you offer free shipping?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, free ground shipping in the US on orders over $50. Faster options available at checkout."
}
},
{
"@type": "Question",
"name": "What is the return policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "30-day returns on unused items. Start a return from your account within 30 days of delivery."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Headphones", "item": "https://www.example.com/headphones" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
Common errors and fixes
- Missing currency or availability
Use ISO currency codes and complete schema.org availability URLs in Offer data.
- Incomplete shipping details
Include shippingDestination.addressCountry and deliveryTime.transitTime with units.
- Return policy is not connected
Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.
- FAQ answers differ from the page
Keep structured FAQ answers identical to visible answers.
Stack FAQs
Do I need Product for every list item?
Include representative Product objects for featured items; keep the ItemList to structure the list itself.
How should I handle pagination?
Ensure canonical points to the view you want indexed; include rel=prev/next in HTML and keep ItemList aligned to the visible page.