We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Course catalog/category pages with ItemList of courses and instances, FAQs, and breadcrumb context.
Structures the list of courses and cohorts on the catalog page.
Defines each course with provider, outcomes, and linked instances.
Represents scheduled cohorts with dates, mode, and location.
Answers enrollment, refund, and pacing questions.
Provides navigation context for the catalog 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": "ItemList",
"@id": "https://www.example.com/courses/data#list",
"itemListOrder": "https://schema.org/ItemListUnordered",
"numberOfItems": 2,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Data Analytics Foundations",
"item": { "@id": "https://www.example.com/courses/data-analytics#course" },
"url": "https://www.example.com/courses/data-analytics"
},
{
"@type": "ListItem",
"position": 2,
"name": "Advanced SQL for Analytics",
"item": { "@id": "https://www.example.com/courses/advanced-sql#course" },
"url": "https://www.example.com/courses/advanced-sql"
}
]
},
{
"@context": "https://schema.org",
"@type": "Course",
"@id": "https://www.example.com/courses/data-analytics#course",
"name": "Data Analytics Foundations",
"description": "Learn SQL, spreadsheets, and dashboards to analyze and present business insights.",
"provider": { "@id": "https://www.example.com/#org" },
"hasCourseInstance": [
{ "@id": "https://www.example.com/courses/data-analytics#cohort-spring" }
],
"courseCode": "DA-101",
"learningResourceType": "Bootcamp",
"educationalCredentialAwarded": "Certificate"
},
{
"@context": "https://schema.org",
"@type": "CourseInstance",
"@id": "https://www.example.com/courses/data-analytics#cohort-spring",
"name": "Spring 2026 — Data Analytics Foundations",
"courseMode": "Online",
"startDate": "2026-04-01",
"endDate": "2026-06-15",
"location": {
"@type": "Place",
"name": "Online"
},
"instructor": {
"@type": "Person",
"name": "Sam Rivera"
},
"offers": {
"@type": "Offer",
"price": "1499.00",
"priceCurrency": "USD",
"url": "https://www.example.com/courses/data-analytics/enroll"
}
},
{
"@context": "https://schema.org",
"@type": "Course",
"@id": "https://www.example.com/courses/advanced-sql#course",
"name": "Advanced SQL for Analytics",
"description": "Deepen your SQL skills with window functions, CTEs, and performance tuning for analytics workloads.",
"provider": { "@id": "https://www.example.com/#org" },
"hasCourseInstance": [
{ "@id": "https://www.example.com/courses/advanced-sql#cohort-may" }
],
"courseCode": "SQL-201",
"learningResourceType": "Workshop"
},
{
"@context": "https://schema.org",
"@type": "CourseInstance",
"@id": "https://www.example.com/courses/advanced-sql#cohort-may",
"name": "May 2026 — Advanced SQL",
"courseMode": "Hybrid",
"startDate": "2026-05-10",
"endDate": "2026-06-20",
"location": {
"@type": "Place",
"name": "New York Campus"
},
"instructor": {
"@type": "Person",
"name": "Priya Desai"
},
"offers": {
"@type": "Offer",
"price": "1299.00",
"priceCurrency": "USD",
"url": "https://www.example.com/courses/advanced-sql/enroll"
}
},
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.example.com/#org",
"name": "Example Academy",
"url": "https://www.example.com",
"logo": "https://www.example.com/images/logo-120x60.png",
"sameAs": [
"https://www.linkedin.com/school/example-academy",
"https://twitter.com/exampleacademy"
]
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Are the cohorts live or self-paced?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Courses are live with weekly sessions; recordings are posted after each class for review."
}
},
{
"@type": "Question",
"name": "What is the refund policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Full refunds up to 7 days before start; pro-rated refunds within the first week of class."
}
},
{
"@type": "Question",
"name": "Do you provide certificates?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, a certificate is issued upon completion with at least 80% attendance and final project submission."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Courses", "item": "https://www.example.com/courses" },
{ "@type": "ListItem", "position": 3, "name": "Data & SQL", "item": "https://www.example.com/courses/data" }
]
}
]Include only the courses visible on the page. If you paginate, update itemListElement to reflect the current view.
Use CourseInstance for scheduled cohorts. For evergreen/on-demand courses, omit CourseInstance and keep Course focused on the canonical content.