Hardware RMA / Warranty Claim Stack
Hardware RMA/warranty claim pages with MerchantReturnPolicy + Offer, FAQs, and breadcrumb navigation.
When to use this stack
- RMA request pages for hardware products
- Warranty claim portals with eligibility and timelines
- Pages where FAQs cover shipping and inspection
What is included
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.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- availability
- description
- itemListElement[].name
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- returnFees
- returnMethod
- returnPolicyCategory
- url
Recommended properties
- applicableCountry
- dateModified
- eligibleRegion
- inLanguage
- itemListElement[].item
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- merchantReturnDays
- price
- priceCurrency
- returnShippingFeesAmount
- url
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": "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" }
]
}
]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 list multiple warranty tiers?
Yes. Use a separate Offer for each warranty tier and link each to the matching form or product.
Do I need a return policy if it is warranty-only?
Yes. MerchantReturnPolicy clarifies eligibility and return method even for warranty claims.