We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Warranty/coverage pages pairing a Product with a coverage Offer, FAQs, and breadcrumb navigation.
Represents the covered product or the warranty plan SKU itself.
Expresses the warranty/coverage terms and purchase URL.
Answers eligibility, claim process, and transferability questions.
Provides navigation context to the warranty 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": "Product",
"@id": "https://www.example.com/products/ultra-laptop#warranty",
"name": "Ultra Laptop Extended Warranty",
"description": "3-year extended coverage for the Ultra Laptop including accidental damage and battery replacement.",
"image": "https://www.example.com/images/ultra-laptop-warranty.webp",
"brand": { "@type": "Brand", "name": "Example Devices" },
"sku": "ULTRA-WAR-3YR",
"model": "Ultra Laptop",
"url": "https://www.example.com/products/ultra-laptop/warranty"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/products/ultra-laptop#warranty-offer",
"name": "3-Year Extended Warranty",
"category": "Warranty",
"price": "149.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/products/ultra-laptop/warranty#purchase",
"priceValidUntil": "2026-12-31",
"seller": { "@type": "Organization", "name": "Example Devices" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What does the warranty cover?",
"acceptedAnswer": {
"@type": "Answer",
"text": "It covers defects, accidental damage, and one battery replacement during the term."
}
},
{
"@type": "Question",
"name": "How do I file a claim?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Submit a claim in your account with the device serial number and incident details. We respond within two business days."
}
},
{
"@type": "Question",
"name": "Can I transfer coverage?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Coverage can be transferred once to a new owner with proof of purchase."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Products", "item": "https://www.example.com/products" },
{ "@type": "ListItem", "position": 3, "name": "Ultra Laptop", "item": "https://www.example.com/products/ultra-laptop" },
{ "@type": "ListItem", "position": 4, "name": "Extended Warranty", "item": "https://www.example.com/products/ultra-laptop/warranty" }
]
}
]Yes, if multiple terms/tiers are visible. Include one Offer per tier with price and URL aligned to the page.
If the device is also on the page, you can include the device Product as well; keep this Product focused on the warranty SKU.