schemaorg-coda :: Example

eg-0335

From v29.4

JSON-LD

{
  "@context": "https://schema.org/",
  "@type": "Course",
  "educationalCredentialAwarded": "Higher National Certificate in Accounting",
  "name": "HNC Accounting"
}

RDFa

<body vocab="https://schema.org/" typeof="Course">
<!-- A college course leading to an HNC in Accounting -->
<!-- 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" />
</body>

Pre-Markup

<body>
<!-- A college course leading to an HNC in Accounting -->
<!-- based on http://www.fife.ac.uk/student/courses/course/HCACC -->
  <h1>Course Details</h1>
  <h2>HNC Accounting</h2>
</body>