We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Returns center pages with MerchantReturnPolicy + WebPage, FAQs, and breadcrumb navigation.
Defines the returns center page and its summary.
Captures the marketplace return rules and timelines.
Answers questions about eligibility, refunds, and exchanges.
Provides navigation context for the returns center.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "WebPage",
"@id": "https://www.example.com/returns#page",
"name": "Marketplace Returns Center",
"description": "Return eligibility, timelines, and refund policies for Marketplace orders.",
"url": "https://www.example.com/returns",
"inLanguage": "en",
"dateModified": "2026-04-12"
},
{
"@context": "https://schema.org",
"@type": "MerchantReturnPolicy",
"@id": "https://www.example.com/returns#policy",
"name": "Marketplace Returns Policy",
"url": "https://www.example.com/returns",
"returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow",
"merchantReturnDays": 30,
"returnMethod": "https://schema.org/ReturnByMail",
"returnFees": "https://schema.org/FreeReturn",
"applicableCountry": "US"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "When will I receive my refund?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Refunds are issued within 3-5 business days after the return is received and inspected."
}
},
{
"@type": "Question",
"name": "Are return shipping labels provided?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Eligible orders receive a prepaid label generated in the returns portal."
}
},
{
"@type": "Question",
"name": "Can I exchange items instead of returning?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Exchanges are available for select items. Start a return to see exchange options."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Help Center", "item": "https://www.example.com/help" },
{ "@type": "ListItem", "position": 3, "name": "Returns Center", "item": "https://www.example.com/returns" }
]
}
]If your marketplace has different policies by category, add multiple MerchantReturnPolicy entries with clear @id values.
Yes. WebPage helps describe the returns hub and keeps the policy aligned to the visible content.