Generate Course schema markup in JSON-LD format. Create structured data for educational courses with provider information for course rich results.
Course schema markup enables your courses to appear in Google's course rich results, showing course name, provider, description, and pricing directly in search. This is particularly valuable for educational institutions, online learning platforms, and training providers looking to increase enrollment.
Course Schema = { @type: Course, name, description, provider: { @type: Organization, name } }Required: name, description. Recommended: provider (Organization with name), url, offers (pricing info). Google uses Course schema to populate course search features and may display your course in specialized course search experiences.
| Input | Output |
|---|---|
| Name: "Introduction to Python", Provider: "CodeAcademy" | {"@context":"https://schema.org","@type":"Course","name":"Introduction to Python","description":"Learn Python programming","provider":{"@type":"Organization","name":"CodeAcademy"}} |
| Name: "Digital Marketing 101", Provider: "Marketing Institute" | {"@context":"https://schema.org","@type":"Course","name":"Digital Marketing 101","provider":{"@type":"Organization","name":"Marketing Institute"}} |
| Name: "Data Science Bootcamp", URL: example.com/ds-bootcamp | {"@context":"https://schema.org","@type":"Course","name":"Data Science Bootcamp","url":"https://example.com/ds-bootcamp"} |