We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Pre-order campaign pages with Product + Offer, FAQs, and breadcrumb navigation.
Defines the product being offered for pre-order.
Describes pre-order availability, pricing, and checkout link.
Answers questions about fulfillment dates, billing, and cancellations.
Provides navigation context for the pre-order 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/preorder/atlas-watch#product",
"name": "Atlas Pro Watch",
"description": "A titanium smartwatch with 10-day battery life and health tracking.",
"image": "https://www.example.com/images/atlas-pro.webp",
"brand": { "@type": "Brand", "name": "Atlas" },
"sku": "ATLAS-PRO",
"releaseDate": "2025-04-15",
"offers": {
"@type": "Offer",
"@id": "https://www.example.com/preorder/atlas-watch#offer",
"name": "Atlas Pro Watch Pre-Order",
"price": "349.00",
"priceCurrency": "USD",
"availability": "https://schema.org/PreOrder",
"availabilityStarts": "2025-02-01",
"url": "https://www.example.com/preorder/atlas-watch/checkout",
"itemOffered": { "@id": "https://www.example.com/preorder/atlas-watch#product" },
"priceValidUntil": "2025-03-31"
}
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/preorder/atlas-watch#offer",
"name": "Atlas Pro Watch Pre-Order",
"price": "349.00",
"priceCurrency": "USD",
"availability": "https://schema.org/PreOrder",
"availabilityStarts": "2025-02-01",
"url": "https://www.example.com/preorder/atlas-watch/checkout",
"itemOffered": { "@id": "https://www.example.com/preorder/atlas-watch#product" },
"priceValidUntil": "2025-03-31",
"eligibleRegion": "US",
"description": "Reserve the Atlas Pro Watch for the first production run."
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "When will pre-orders ship?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Orders begin shipping in mid-April, with tracking emailed when your unit leaves the warehouse."
}
},
{
"@type": "Question",
"name": "Is my card charged immediately?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We charge a 20% deposit today and collect the remaining balance when your order ships."
}
},
{
"@type": "Question",
"name": "Can I cancel before shipping?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Cancellations are accepted up to 7 days before shipping begins."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Pre-Orders", "item": "https://www.example.com/preorder" },
{ "@type": "ListItem", "position": 3, "name": "Atlas Pro Watch", "item": "https://www.example.com/preorder/atlas-watch" }
]
}
]Yes. Pair Offer availability with availabilityStarts and clarify ship timing in the page content.
If you have multiple pre-order tiers, list a distinct Offer entry for each tier and price.