We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Warranty registration pages pairing Product identity with registration Offer, FAQs, and breadcrumb navigation.
Identifies the product being registered, including model and brand.
Expresses the registration/coverage offer and destination URL.
Answers registration requirements and timelines.
Provides navigation context to the registration 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#product",
"name": "Ultra Laptop",
"description": "14-inch performance laptop with OLED display and Wi-Fi 7.",
"sku": "ULTRA-2025",
"model": "ULTRA-2025",
"brand": { "@type": "Brand", "name": "Example Devices" },
"image": "https://www.example.com/images/ultra-laptop-front.webp",
"url": "https://www.example.com/products/ultra-laptop"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/products/ultra-laptop#warranty-registration",
"name": "Ultra Laptop Warranty Registration",
"category": "WarrantyRegistration",
"price": "0.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/warranty/register/ultra-laptop",
"eligibleRegion": "US"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What do I need to register?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Provide your device serial number and proof of purchase within 30 days of delivery."
}
},
{
"@type": "Question",
"name": "When does coverage start?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Coverage starts on the purchase date after successful registration."
}
},
{
"@type": "Question",
"name": "Can I transfer the warranty?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You can transfer coverage once to a new owner with proof of transfer and the original receipt."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Warranty Registration", "item": "https://www.example.com/warranty/register" },
{ "@type": "ListItem", "position": 3, "name": "Ultra Laptop", "item": "https://www.example.com/warranty/register/ultra-laptop" }
]
}
]Yes, if activation is free. If there’s a fee, set the real price and keep it aligned with the page content.
Include one Product and Offer per product visible on the page with distinct @id values and URLs.