Fife College 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 Fife College course HNC Accounting. Currently, three offerings at different venues on variable dates.


TYPES: #CourseExteg2 Course, CourseInstance, courseMode, educationalCredentialAwarded

PRE-MARKUP:
<!-- A college course offered at several locations -->
Course
name:	HNC Accounting
  educationalCredentialAwarded:	Higher National Certificate in Accounting
  hasCourseInstance [CourseInstance]:
    courseMode:	Full Time
    startDate:	2016-08-29
    location:	St Brycedale Campus Kirkcaldy
    offers [Offer]:
      potentialAction [ApplyAction]:
      url:	https://courses.fife.ac.uk/portal/...
  hasCourseInstance [CourseInstance]:
    courseMode:	Full Time
    startDate:	2016-08-29
    location:	Halbeath Campus Dunfermline
    offers [Offer]:
      potentialAction [ApplyAction]:
      url:	https://courses.fife.ac.uk/portal/...
  hasCourseInstance [CourseInstance]:
    courseMode:	Evenings only and weekends
    startDate:	2016-08-31
    location:	St Brycedale Campus Kirkcaldy
    offers [Offer]:
      potentialAction [ApplyAction]:
      url:	https://courses.fife.ac.uk/portal/...

MICRODATA:
<!--TODO--> 


RDFA:
<body vocab="http://schema.org/" typeof="Course">
<!-- A college course offered at several locations -->
<!-- based on http://www.fife.ac.uk/student/courses/course/HCACC -->
  <h1>Course Details</h1>           
  <h2 property="name">HNC Accounting</h2>
  <meta property="educationalCredentialAwarded" content="Higher National Certificate in Accounting" />
  <h4>
    <a href="http://www.fife.ac.uk/courses/Pages/scqf.aspx">SCQF</a> Level 7
  </h4>
  <div >
    <p>This course is designed for those wishing to take up a career in Accounting 
       and Financial Administration within a range of organisations. Both HNC and 
       HND awards are suitable for a wide target audience including school leavers, 
       adult returners to education and those in employment wishing to formalise 
       their skills.</p>
    <p>You will gain a range of competencies required by employers, allowing scope 
       to develop and progress in a variety of functions within organisations. In 
       addition, you may progress to further academic and professional qualifications 
       either prior to taking up an Accounting position or parallel with it.</p>
  </div>
  <h4>This course is currently offered on the date(s) and venue(s) listed below.</h4>
  <div >
    <table >
      <tbody>
        <tr >
          <th scope="col" >Method of Study</th>
          <th scope="col" >Year of course</th>
          <th scope="col" >Starts</th>
          <th scope="col" >Ends</th>
          <th scope="col" >Based at</th>
          <th scope="col" >Apply</th>
        </tr>
        <tr rel="hasCourseInstance" typeOf="CourseInstance">
          <td property="courseMode"><a href="http://www.fife.ac.uk/courses/Pages/studyoptions.aspx">
                   Full Time
               </a>
          </td>
          <td >1st Year</td>
          <td >
            <abbr title="20160829" property="startDate">29 Aug 2016</abbr>
          </td>
          <td >
            <abbr title="20170623" property="endDate">23 Jun 2017</abbr>
          </td>
          <td property="location">St Brycedale Campus Kirkcaldy</td>
          <td rel="offers" typeOf="Offer">
            <span rel="potentialAction" typeOf="ApplyAction">
            <a property="Url" href="https://courses.fife.ac.uk/portal/..." target="">apply online</a>
            </span>
          </td>
        </tr>
        <tr rel="hasCourseInstance" typeOf="CourseInstance">
          <td property="courseMode">
            <a href="http://www.fife.ac.uk/courses/Pages/studyoptions.aspx">
               Full Time
            </a>
          </td>
          <td >1st Year</td>
          <td >
            <abbr title="20160829" property="startDate">29 Aug 2016</abbr>
          </td>
          <td >
            <abbr title="20170623" property="endDate">23 Jun 2017</abbr>
          </td>
          <td  property="location">Halbeath Campus Dunfermline</td>
          <td rel="offers" typeOf="Offer">
            <span rel="potentialAction" typeOf="ApplyAction">
            <a property="Url"  href="https://courses.fife.ac.uk/portal/..." target="">apply online</a>
            </span>
          </td>
        </tr>
        <tr rel="hasCourseInstance" typeOf="CourseInstance">
          <td property="courseMode">
            <a href="http://www.fife.ac.uk/courses/Pages/studyoptions.aspx">
               Evenings only and weekends
            </a>
          </td>
          <td >1st Year</td>
          <td >
            <abbr title="20160831" property="startDate">31 Aug 2016</abbr>
          </td>
          <td >
            <abbr title="20170621" property="endDate">21 Jun 2017</abbr>
          </td>
          <td  property="location">St Brycedale Campus Kirkcaldy</td>
          <td rel="offers" typeOf="Offer">
            <span rel="potentialAction" typeOf="ApplyAction">
            <a property="Url" href="https://courses.fife.ac.uk/portal/..." target="">apply online</a>
            </span>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
  
</div>
</body></html>