We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Subscription pause/cancel policy pages with Offer + WebPage context, FAQs, and breadcrumb navigation.
Defines the policy page and its purpose.
Describes the subscription change offer and action URL.
Answers questions about proration, refunds, and reactivation.
Provides navigation context for the policy 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/account/subscription#page",
"name": "Pause or Cancel Subscription",
"url": "https://www.example.com/account/subscription",
"description": "Manage your subscription status, including pausing or canceling your plan."
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/account/subscription#offer",
"name": "Subscription Pause or Cancel",
"price": "0.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/account/subscription/manage",
"description": "Pause billing for up to 3 months or cancel your plan anytime."
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Will I receive a refund if I cancel?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Refunds are not issued for partial months. You retain access until the end of your billing period."
}
},
{
"@type": "Question",
"name": "Can I reactivate after pausing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. You can resume your subscription at any time from the account portal."
}
},
{
"@type": "Question",
"name": "What happens to my data?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Your data is retained during a pause and remains available upon reactivation."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Account", "item": "https://www.example.com/account" },
{ "@type": "ListItem", "position": 3, "name": "Subscription", "item": "https://www.example.com/account/subscription" }
]
}
]If pause/cancel terms differ by plan, add separate Offer entries for each plan’s policy.
Yes. Document proration or refund rules in the page content and FAQ answers.