Product Registration Stack
Product registration pages with Product and Offer context, FAQs, and breadcrumbs.
When to use this stack
- Warranty registration pages for purchased products
- Product onboarding pages that collect serial numbers
- Registration landing pages with eligibility rules
What is included
Defines the product being registered.
Captures the registration offer or included coverage.
Answers eligibility, timing, and proof of purchase questions.
Provides navigation context for the registration 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
- price
- priceCurrency
- url
Recommended properties
- brand.name
- category
- description
- gtin
- image
- itemListElement[].item
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- priceValidUntil
- sku
- 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": "Product",
"@id": "https://www.example.com/register/widget-pro#product",
"name": "Widget Pro",
"description": "High-performance widget for professional workflows.",
"brand": { "@type": "Brand", "name": "Northwind" },
"sku": "NW-WP-220",
"image": "https://www.example.com/images/widget-pro.webp",
"url": "https://www.example.com/register/widget-pro"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/register/widget-pro#offer",
"name": "Extended Warranty Registration",
"description": "Register within 30 days of purchase to activate the extended warranty.",
"price": "0.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/register/widget-pro#form"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "When should I register my product?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Register within 30 days of purchase to activate coverage."
}
},
{
"@type": "Question",
"name": "Do I need proof of purchase?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Upload or provide a receipt to complete registration."
}
},
{
"@type": "Question",
"name": "What if I bought from a retailer?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Retail purchases are eligible as long as the receipt shows an authorized seller."
}
}
]
},
{
"@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": "Product Registration", "item": "https://www.example.com/register/widget-pro" }
]
}
]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 include multiple products?
If the page supports multiple products, list each Product separately or create dedicated pages per product.
How do I show paid registrations?
Use an Offer with the registration fee and keep the price aligned with the form.