We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Hardware RMA/warranty claim pages with MerchantReturnPolicy + Offer, FAQs, and breadcrumb navigation.
Defines the RMA page and its canonical URL.
Captures the return/warranty policy terms and timelines.
Represents the warranty coverage or claim offer details.
Answers warranty eligibility, shipping, and processing questions.
Provides navigation context for the RMA page.
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/support/rma#page",
"name": "Hardware RMA Request",
"description": "Request a warranty claim or replacement for eligible hardware products.",
"url": "https://www.example.com/support/rma",
"inLanguage": "en-US",
"dateModified": "2025-08-12"
},
{
"@context": "https://schema.org",
"@type": "MerchantReturnPolicy",
"@id": "https://www.example.com/support/rma#policy",
"name": "Hardware Warranty Policy",
"url": "https://www.example.com/support/rma",
"returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow",
"merchantReturnDays": 30,
"returnMethod": "https://schema.org/ReturnByMail",
"returnFees": "https://schema.org/FreeReturn",
"applicableCountry": "US"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/support/rma#offer",
"name": "Hardware Warranty Claim",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/support/rma#start",
"eligibleRegion": "US"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is covered under warranty?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Manufacturing defects and hardware failures within the warranty period are covered."
}
},
{
"@type": "Question",
"name": "How long do replacements take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most replacements ship within 5-7 business days after inspection."
}
},
{
"@type": "Question",
"name": "Do I need the original packaging?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Original packaging is recommended, but secure packaging is acceptable."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Support", "item": "https://www.example.com/support" },
{ "@type": "ListItem", "position": 3, "name": "RMA Request", "item": "https://www.example.com/support/rma" }
]
}
]Yes. Use a separate Offer for each warranty tier and link each to the matching form or product.
Yes. MerchantReturnPolicy clarifies eligibility and return method even for warranty claims.