Coursera example

From Schema Course extension Community Group
Schema Course Extension Wiki
Navigation
Main Page
Outline use cases
Example sites
Other useful links
Community group home page
email list for group
schema.org Git hub issue

Based on The Data Scientist’s Toolbox, a MOOC / online course (part of the Data Science Specialization).


TYPES: #CourseExteg1 Course, CourseInstance, courseMode, hasCourseInstance

PRE-MARKUP:
<!-- A MOOC / free online course. As a simple one-off course -->
Course
  name:	The Data Scientist’s Toolbox
  hasCourseInstance [CourseInstance]:
    courseMode:	MOOC
    courseMode:	online
    startDate:	February 15
    endDate:	March 21
    offers [Offer]:
      price:	0

MICRODATA:
<!--TODO--> 


RDFA:
<body vocab="http://schema.org/">
<!-- A MOOC / free online course. As a simple one-off course -->
<!-- Based on https://www.coursera.org/course/datascitoolbox -->
<header>
<div >Coursera</div> 
<div >Universal access to the world’s best education.</div> 
</header> 
<main typeof="Course" style="border: 1px solid grey;  width: 90%; margin: 10px">

<div style="border: 1px solid grey; width: 90%; margin: 10px"> 
<!--The right+central banner of the page-->
<h1 property="name">The Data Scientist's Toolbox</h1>
<h2 property="provider">Johns Hopkins University</h2>
<h3>
    Part of a 10-course series, the 
    <a href="/specializations/jhu-data-science">Data Science Specialization</a>
</h3>
</div>
<div  > 

<div   style="border: 1px solid grey;  width: 90%; margin: 10px">
<h2  >About this Course</h2>
        <p property="description">
        In this course you will get an introduction to the main tools and ideas in the
        data scientist's toolbox. The course gives an overview of the data, questions,
        and tools that data analysts and data scientists work with. There are two
        components to this course. The first is a conceptual introduction to the ideas
        behind turning data into actionable knowledge. The second is a practical
        introduction to the tools that will be used in the program like version control,
        markdown, git, GitHub, R, and RStudio.</p>
        <div ><span >Subtitles available in <strong>English, Russian, Chinese (Simplified)</strong>
              </span>
        </div>
        <div ><span >1-4 hours/week</span></div>
</div>

<!--start of course instance info-->
<div rel="hasCourseInstance" typeof="CourseInstance" 
     style="border: 1px solid grey;  width: 90%; margin: 10px">
<meta property="courseMode" content="MOOC" />
<meta property="courseMode" content="online" />
<span rel="offers" typeOf="Offer">
    <meta property="price" content="0" />
    <meta property="offeredBy" content="Coursera">
</span>
<h2  >Instructors</h2>

	<div property="instructor" typeof="person" 
	     style="border: 1px solid grey;  width: 90%; margin: 10px">
	<a property="url" href="http://example.org/instructor/~315" >
	<p  property="name">Jeff Leek, PhD</p>
	<div property="jobTitle" >Associate Professor, Biostatistics</div>
	<div  property="worksFor" >Bloomberg School of Public Health </div>
	</a>
	</div>

	<div property="instructor" typeof="person" 
	     style="border: 1px solid grey;  width: 90%; margin: 10px">
	<a property="url" href="http://example.org/instructor/~316" >
	<p  property="name">Roger Peng, PhD</p>
	<div property="jobTitle" >Associate Professor, Biostatistics</div>
	<div  property="worksFor" >Bloomberg School of Public Health </div>
	</a>
	</div>

	<div property="instructor" typeof="person" 
	     style="border: 1px solid grey;  width: 90%; margin: 10px">
	<a property="url" href="http://example.org/instructor/~316" >
	<p  property="name">Brian Caffo, PhD</p>
	<div property="jobTitle" >Professor, Biostatistics</div>
	<div  property="worksFor" >Bloomberg School of Public Health </div>
	</a>
	</div>
 <!--This ends the central column of the page-->
<h2>Session dates</h2>
<div style="border: 1px solid grey;  width: 90%; margin: 10px">

<h3 ><span property="startDate">February 15</span>
        <span > - </span><span property="endDate">March 21</span></h3>
        <div  ><p  ><span >Enrollment ends February 21</span></p>
        <button  >Enroll</button></div>
        <div  ><p  ><span >Following session begins February 22</span></p></div>        
</div>
</div>
<div   style="border: 1px solid grey;  width: 90%; margin: 10px"><p  ><span >
Financial Aid is available for learners who cannot afford the fee. <a
href="#">Learn more and apply.</a> </span></p>
</div>

</div></main>
</body>

JSON:
<!--TODO-->