schemaorg-coda :: Example

eg-0336

From v29.4

JSON-LD

{
  "@context": "https://schema.org/",
  "@type": "Course",
  "educationalCredentialAwarded": "completion certificate from \r\n      PQB",
  "name": "Basic Proofreading"
}

RDFa

<!-- Certificate for a distance learning course -->
<!--Based on http://www.train4publishing.co.uk/courses/distance-learning/basic-proofreading -->
<body vocab="https://schema.org/">
  <div typeof="Course">
    <h1 property="name">Basic Proofreading</h1>
    <h2>What is Included?</h2>
    <h3>Certificate</h3>
    <p>A <span property= "educationalCredentialAwarded">completion certificate from
      PQB</span> showing whether you have achieved a pass, merit or distinction in your
      work.</p>
  </div>
</body>

Pre-Markup

<!-- Certificate for a distance learning course -->
<!--Based on http://www.train4publishing.co.uk/courses/distance-learning/basic-proofreading -->
<body>
  <div>
    <h1>Basic Proofreading</h1>
    <h2>What is Included?</h2>
    <h3>Certificate</h3>
    <p>A completion certificate from PQB showing whether you have achieved a
      pass, merit or distinction in your work.</p>
  </div>
</body>