JSON-LD Course Info ❺🧪
Generate valid JSON-LD Structured data from CMS Content
Overview
When to Use
Usage Notes
Notes
References
Last updated
Generate valid JSON-LD Structured data from CMS Content
Last updated
<script>
var article = new window.sa5.LdJsonCourse();
article.headline = `Article headline`;
article.addAuthor (`Bob Hershel`);
article.publisher = `Sygnal`;
article.generate();
</script><script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "Introduction to Computer Science and Programming",
"description": "Introductory CS course laying out the basics.",
"provider": {
"@type": "Organization",
"name": "University of Technology - Eureka",
"sameAs": "https://www.example.com"
}
}
</script>