We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Membership renewal pages with Offer + WebPage context, FAQs, and breadcrumb navigation.
Declares the renewal page and its summary.
Represents the membership renewal offer and pricing.
Answers billing cycle, grace period, and cancellation questions.
Provides navigation context for the renewal 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": "WebPage",
"@id": "https://www.example.com/members/renew#page",
"name": "Renew Your Membership",
"description": "Renew your annual membership to keep access to premium benefits.",
"url": "https://www.example.com/members/renew",
"inLanguage": "en",
"dateModified": "2025-03-01"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/members/renew#offer",
"name": "Annual Membership Renewal",
"description": "Renews premium access for 12 months with priority support.",
"price": "99.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/members/renew"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Is there a grace period?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. You have 14 days after expiration to renew without losing benefits."
}
},
{
"@type": "Question",
"name": "Can I switch to monthly billing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Select monthly billing during checkout to change your plan."
}
},
{
"@type": "Question",
"name": "How do I cancel auto-renew?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Disable auto-renew in your account settings before the renewal date."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Members", "item": "https://www.example.com/members" },
{ "@type": "ListItem", "position": 3, "name": "Renew", "item": "https://www.example.com/members/renew" }
]
}
]Yes. Add one Offer per tier if you show different renewal options.
Include discount details in the Offer description and ensure the displayed price matches.