Course Capstone / Final Project Stack
Course capstone pages with CreativeWork + Course context, FAQs, and breadcrumb navigation.
When to use this stack
- Capstone project briefs or requirements pages
- Final project showcase pages tied to a specific course
- Pages where FAQs clarify grading, deliverables, and deadlines
What is included
Describes the capstone brief, showcase, or final deliverable.
Links the capstone to its course and provider.
Answers questions about scope, evaluation, and submission.
Provides navigation context for the capstone page.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- description
- itemListElement[].name
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- provider.name
- url
Recommended properties
- author.name
- courseCode
- creator.name
- datePublished
- educationalCredentialAwarded
- isPartOf.@id
- itemListElement[].item
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- timeRequired
Combined JSON-LD
Paste this as one script tag, then replace every example value with data from the live page.
[
{
"@context": "https://schema.org",
"@type": "Course",
"@id": "https://www.example.com/courses/product-strategy#course",
"name": "Product Strategy Bootcamp",
"description": "Learn product positioning, roadmap planning, and go-to-market fundamentals.",
"provider": { "@type": "Organization", "name": "Northwind Academy" },
"url": "https://www.example.com/courses/product-strategy",
"courseCode": "PS-401",
"educationalCredentialAwarded": "Certificate of Completion",
"timeRequired": "P6W"
},
{
"@context": "https://schema.org",
"@type": "CreativeWork",
"@id": "https://www.example.com/courses/product-strategy/capstone#brief",
"name": "Capstone: Launch Plan for a New Product",
"description": "Create a launch plan with target segments, positioning, and a 90-day roadmap.",
"url": "https://www.example.com/courses/product-strategy/capstone",
"author": { "@type": "Person", "name": "Riley Chen" },
"creator": { "@type": "Organization", "name": "Northwind Academy" },
"datePublished": "2025-02-12",
"isPartOf": { "@id": "https://www.example.com/courses/product-strategy#course" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What are the deliverables?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Submit a 10-slide deck, a positioning statement, and a launch checklist."
}
},
{
"@type": "Question",
"name": "How is the capstone graded?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Projects are scored on clarity, research depth, and feasibility using the rubric provided."
}
},
{
"@type": "Question",
"name": "Can I publish my capstone?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. You may publish your capstone if it doesn’t include confidential data."
}
}
]
},
{
"@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": "Product Strategy Bootcamp", "item": "https://www.example.com/courses/product-strategy" },
{ "@type": "ListItem", "position": 4, "name": "Capstone", "item": "https://www.example.com/courses/product-strategy/capstone" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
Common errors and fixes
- Missing currency or availability
Use ISO currency codes and complete schema.org availability URLs in Offer data.
- Incomplete shipping details
Include shippingDestination.addressCountry and deliveryTime.transitTime with units.
- Return policy is not connected
Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.
- FAQ answers differ from the page
Keep structured FAQ answers identical to visible answers.
Stack FAQs
Should the capstone be a CreativeWork or Course?
Use CreativeWork for the capstone brief or showcase, and Course to define the parent program.
How do I model multiple capstone options?
Add one CreativeWork entry per option and link each to the same Course with isPartOf.