Marketplace Seller Profile Stack
Seller profile pages with Organization + Product highlights, FAQs, and breadcrumb navigation.
When to use this stack
- Marketplace seller storefronts with brand info and featured products
- Seller profile pages showing ratings, policies, and inventory highlights
- Pages where FAQs clarify shipping, returns, and support
What is included
Defines the seller brand, identity, and contact points.
Highlights representative products sold by the seller.
Answers shipping, returns, and support questions for the seller.
Provides navigation context for the seller profile page.
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
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- offers.availability
- offers.price
- offers.priceCurrency
- url
Recommended properties
- aggregateRating.ratingValue
- brand.name
- contactPoint.contactType
- itemListElement[].item
- logo
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- offers.seller.@id
- offers.url
- sameAs
- 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": "Organization",
"@id": "https://www.example.com/sellers/summit-outdoors#org",
"name": "Summit Outdoors",
"url": "https://www.example.com/sellers/summit-outdoors",
"logo": "https://www.example.com/images/sellers/summit-outdoors-logo.webp",
"sameAs": [
"https://www.instagram.com/summitoutdoors",
"https://www.facebook.com/summitoutdoors"
]
},
{
"@context": "https://schema.org",
"@type": "Product",
"@id": "https://www.example.com/products/alpine-hiking-pack#product",
"name": "Alpine Hiking Pack 35L",
"description": "Lightweight 35L backpack with hydration sleeve and reinforced straps.",
"image": "https://www.example.com/images/products/alpine-pack.webp",
"brand": { "@type": "Brand", "name": "Summit Outdoors" },
"offers": {
"@type": "Offer",
"price": "129.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/products/alpine-hiking-pack",
"seller": { "@id": "https://www.example.com/sellers/summit-outdoors#org" }
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": 4.8,
"reviewCount": 214
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How fast does Summit Outdoors ship?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Orders ship within 1-2 business days with standard delivery in 3-5 days."
}
},
{
"@type": "Question",
"name": "What is the return policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Returns are accepted within 30 days of delivery for unused items in original packaging."
}
},
{
"@type": "Question",
"name": "How do I contact the seller?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Use the contact form on the seller page or message through the marketplace inbox."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Sellers", "item": "https://www.example.com/sellers" },
{ "@type": "ListItem", "position": 3, "name": "Summit Outdoors", "item": "https://www.example.com/sellers/summit-outdoors" }
]
}
]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
Should I include multiple products?
Include one Product per featured item shown on the seller page, each with its own Offer data.
How do I handle marketplace-level policies?
If policies are shared across sellers, mention them in the page copy and keep seller-specific FAQs focused on differences.