We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Microlearning lesson pages with CreativeWork + HowTo, FAQs, and breadcrumb navigation.
Defines the lesson/module content and summary.
Captures the step-by-step learning flow.
Answers questions about prerequisites and outcomes.
Provides navigation context for the lesson.
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": "CreativeWork",
"@id": "https://www.example.com/academy/excel-basics#lesson",
"name": "Excel Basics: Sorting and Filtering",
"description": "A 10-minute micro-lesson on sorting and filtering data in Excel.",
"url": "https://www.example.com/academy/excel-basics",
"author": { "@type": "Person", "name": "Jamie Lee" },
"datePublished": "2026-04-01",
"timeRequired": "PT10M"
},
{
"@context": "https://schema.org",
"@type": "HowTo",
"@id": "https://www.example.com/academy/excel-basics#howto",
"name": "How to sort and filter a spreadsheet",
"totalTime": "PT10M",
"step": [
{ "@type": "HowToStep", "text": "Select the data range you want to sort or filter." },
{ "@type": "HowToStep", "text": "Open the Data tab and choose Sort or Filter." },
{ "@type": "HowToStep", "text": "Apply the criteria and review the updated table." }
],
"tool": [{ "@type": "HowToTool", "name": "Excel" }]
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do I need prior Excel experience?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. This lesson is beginner-friendly and includes a sample worksheet."
}
},
{
"@type": "Question",
"name": "Is there a practice file?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Download the spreadsheet from the lesson resources section."
}
},
{
"@type": "Question",
"name": "How long does it take to complete?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most learners finish in about 10 minutes."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Academy", "item": "https://www.example.com/academy" },
{ "@type": "ListItem", "position": 3, "name": "Excel Basics", "item": "https://www.example.com/academy/excel-basics" }
]
}
]Yes. CreativeWork summarizes the lesson, and HowTo captures the step-by-step instructions.
Include one CreativeWork and HowTo per module shown, each with distinct @id values.