Bristol Physics on UCAS

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 Bristol Physics course advertised on UCAS, a BSc Programme, offered face-to-face at a University.


PRE-MARKUP:
<!-- a BSc Programme, offered face-to-face at a University -->
[Course]
  name: Physics
  provider [CollegeOrUniversity]: 
    name: University of Bristol
    url: http://www.example.com/provider/324/university-of-bristol
  educationalCredentialAwarded: BSc (Hons)
  courseCode F300
  hasCourseInstance [CourseInstance]:
    duration: 3 Years
    courseMode: Full-time
    courseMode: Study on site

MICRODATA:
<!--TODO--> 


RDFA:
<html>
<head></head>
<body vocab="http://schema.org/">
<!--based on http://search.ucas.com/course/summary/463149/physics -->
    <div typeof="Course">
        <h2 property="name about">
            <span>Physics</span>
        </h2>

        <div property="provider" typeOf="CollegeOrUniversity">
            <a property="url" href="/provider/324/university-of-bristol">
                <span property="name">University of Bristol</span> 
            </a>
        </div>
        <div>
          <div property="hasCourseInstance" typeOf="CourseInstance">
            <div>
                Duration
                <div property="duration">3 Years</div>                
            </div>
            <div>
                Study mode
                <div property="courseMode">Full-time</div>
            </div>     
            <div>
             Attendance
                <div property="courseMode">Study on site</div>               
            </div>
          </div>
            <div>
                Qualification
                <div property="educationalCredentialAwarded">BSc (Hons)</div>
               </div>
            
            <div>
                Course code
                <div property="courseCode">F300</div>
            </div>
        </div>
    </div>
</body></html>

JSON:
<!--TODO-->