Educational level of an educational occupational credential

From Educational and Occupational Credentials in schema.org Community Group
Educational and occupational
credentials in schema.org
Wiki Navigation
Main Page
Outline use cases
Proposals to meet requirements
Example sites
Other useful links
Community group home page
email list for group
schema.org Git hub issue

It should be possible to search or review results of a search by specific credential level, e.g. beginner, intermediate, advanced, high school, post-graduate. In some contexts there formal level indicators which may be used to show the educational levels of things such as courses and credentials (e.g. the levels of the European Qualifications Framework), in other cases informal human readable labels are used.

Discussion: EOCred: Identify the level of a credential thread from February 2018.

Proposal

Create a new property of EducationalOccupationalCredential called educationalLevel

Name: educationalLevel

Definition: The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.

Expected Range: Text, URL, DefinedTerm

Note: the required educational level of an educational occupational credential will normally align with the educational level of the audience who might earn it and level of the learning opportunities (e.g. courses) that lead to it.

Draft code for schema.org

This copy on the wiki is for ease of reference only, the definitive version is the file on github

 
    <div typeof="rdf:Property" resource="http://schema.org/educationalLevel">
      <span>Category: <span property="schema:category">issue-1779</span></span>
      <span class="h" property="rdfs:label">educationalLevel</span>
      <span property="rdfs:comment">The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.</span>
      <span>domainIncludes: <a property="http://schema.org/domainIncludes" href="http://schema.org/EducationalOccupationalCredential">EducationalOccupationalCredential</a></span>
      <span>rangeIncludes: <a property="http://schema.org/rangeIncludes" href="http://schema.org/Text">DefinedTerm</a></span>
      <span>rangeIncludes: <a property="http://schema.org/rangeIncludes" href="http://schema.org/URL">DefinedTerm</a></span>
      <span>rangeIncludes: <a property="http://schema.org/rangeIncludes" href="http://schema.org/DefinedTerm">DefinedTerm</a></span>
      <link property="http://schema.org/isPartOf" href="http://pending.schema.org" />
      <span>Source:  <a property="dc:source" href="https://github.com/schemaorg/schemaorg/issues/1779">#1779</a></span>
    </div>

Test output on appspot (may be slow to load).

Examples

Note: These examples should not be taken as being authoritative or accurate descriptions of the resources on which they are based.

1. Based on SQA HNC Facilities Management

This copy is for ease of reference only. The definitive version is in file issue-1779-examples.txt on github, which may be more extensive.

PRE-MARKUP:
<h1>HNC Facilities Management</h1>
<p>Higher National qualifications provide practical skills and theoretical
  knowledge that meet the needs of employers. The HNC in Facilities Management
  (SCQF level 7) develops knowledge and skills of the modern Facilities
  Management industry including both ‘hard’ and ‘soft’ services, and is aimed
  at those in supervisory and management roles or aspiring managers within the
  wider realm of Facilities Services.</p>

MICRODATA:
<div itemscope itemtype="http://schema.org/EducationalOccupationalCredential">
  <h1 itemprop="name">HNC Facilities Management</h1>
  <p itemprop="description">Higher National qualifications provide practical
    skills and theoretical knowledge that meet the needs of employers. The HNC
    in Facilities Management (SCQF level 7) develops knowledge and skills of the
    modern Facilities Management industry including both ‘hard’ and ‘soft’
    services, and is aimed at those in supervisory and management roles or
    aspiring managers within the wider realm of Facilities Services.</p>
  <div itemprop="educationalLevel"
       itemscope itemtype="http://schema.org/DefinedTerm">
    <meta itemprop="name" content="SCQF Level 7" />
    <link itemtprop="inDefinedTermSet" href="https://www.sqa.org.uk/sqa/71377.html">
  </div>
</div>

RDFA:
<div  vocab="http://schema.org/" typeof="EducationalOccupationalCredential">
  <h1 property="name">HNC Facilities Management</h1>
  <p property="description">Higher National qualifications provide practical
    skills and theoretical knowledge that meet the needs of employers. The HNC
    in Facilities Management (SCQF level 7) develops knowledge and skills of
    the modern Facilities Management industry including both ‘hard’ and ‘soft’
    services, and is aimed at those in supervisory and management roles or
    aspiring managers within the wider realm of Facilities Services.</p>
  <div property="educationalLevel" typeof="http://schema.org/DefinedTerm">
    <meta property="name" content="SCQF Level 7" />
    <link property="inDefinedTermSet" href="https://www.sqa.org.uk/sqa/71377.html">
  </div>
</div>

JSON:
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EducationalOccupationalCredential",
  "name" : "HNC Facilities Management",
  "description" : "Higher National qualifications provide practical
  skills and theoretical knowledge that meet the needs of employers. The HNC
  in Facilities Management (SCQF level 7) develops knowledge and skills of
  the modern Facilities Management industry including both ‘hard’ and ‘soft’
  services, and is aimed at those in supervisory and management roles or
  aspiring managers within the wider realm of Facilities Services.",
  "educationalLevel" : {
    "@type": "DefinedTerm",
    "name": "SCQF Level 7",
    "inDefinedTermSet": "https://www.sqa.org.uk/sqa/71377.html"
  },
}
</script>