Schema.org Course
- Type:
defineCourse(input?: Course)
Describes a Course. - Component:
SchemaOrgCourse
(see how components work)
Useful Links
🔨 Documentation in progress
Examples
defineCourse({ name: 'Introduction to Computer Science and Programming', description: 'Introductory CS course laying out the basics.', provider: { name: 'University of Technology - Eureka', sameAs: 'http://www.ut-eureka.edu', },})
Types
/** * Any offered product or service. * For example: a pair of shoes; a concert ticket; the rental of a car; * a haircut; or an episode of a TV show streamed online. */export interface CourseSimple extends Thing { /** * The title of the course. */ name: string /** * A description of the course. Display limit of 60 characters. */ description?: string /** * A reference to an Organization piece, representing brand associated with the Product. */ provider?: NodeRelation<Organization>}
🔨 Schema in development
Table of Contents