We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
SMB onboarding checklist pages with HowTo steps, FAQs, and breadcrumb navigation.
Declares the checklist page and its purpose.
Structures the onboarding checklist as step-by-step instructions.
Answers timeline, access, and support questions.
Provides navigation context for the checklist.
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/onboarding/smb-checklist#page",
"name": "SMB Onboarding Checklist - Core Setup",
"description": "A step-by-step checklist to onboard new small business customers.",
"url": "https://www.example.com/onboarding/smb-checklist",
"inLanguage": "en",
"dateModified": "2025-05-14"
},
{
"@context": "https://schema.org",
"@type": "HowTo",
"@id": "https://www.example.com/onboarding/smb-checklist#howto",
"name": "SMB Onboarding Checklist",
"description": "Complete these steps in order to activate your account and start billing.",
"totalTime": "P7D",
"step": [
{
"@type": "HowToStep",
"name": "Create your admin account",
"text": "Invite your primary admin and set a secure password."
},
{
"@type": "HowToStep",
"name": "Connect your bank account",
"text": "Link a business bank account to enable payouts and refunds."
},
{
"@type": "HowToStep",
"name": "Add your first customer",
"text": "Import customers or add them manually to start billing."
},
{
"@type": "HowToStep",
"name": "Configure billing rules",
"text": "Set billing frequency, tax rules, and invoice templates."
}
]
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How long does onboarding take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most customers complete the checklist in about one week."
}
},
{
"@type": "Question",
"name": "Do I need admin access to complete setup?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Admin access is required to connect financial accounts and configure billing."
}
},
{
"@type": "Question",
"name": "Where can I get help?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Use the in-app chat or contact support for onboarding assistance."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Onboarding", "item": "https://www.example.com/onboarding" },
{ "@type": "ListItem", "position": 3, "name": "SMB Checklist", "item": "https://www.example.com/onboarding/smb-checklist" }
]
}
]If optional steps appear on the page, include them in the HowTo with clear step names.
Use totalTime to show the expected duration and keep the checklist order aligned with the UI.