Competencies for 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

Several usecases require that we are able to list the competencies that must be demonstrated in order to earn a credential. For example

  • Individuals should be able to search for and find credentials that best address competencies they wish to attain.
  • Individuals should be able to search and find credentials that best match competencies that the individual posses and wishes to be recognized
  • Employers should able to search for and find credentials that address the competencies required of an employee.
  • [having identified a credential] It should be possible to identify the competencies required in order to obtain a credential.

Also, knowing the competences required to earn a credential would help someone find relevant learning resources / opportunities, i.e. those which had similar competencies as learning outcomes.

Discussion: EOCred: Credentials and competences thread from March 2018.

Proposal

Create a new property of EducationalOccupationalCredential called competencyRequired. We hope that a structured data type for Compentencies will be forthcoming soon, but in its absence plain text or urls can be used.

compentencyRequired is a broader term than the existing term skills

Name: competencyRequired

Definition: Knowledge, skill, ability or personal attribute that must be demonstrated by a person person or other entity.

Expected Range: text, url, DefinedTerm

Note: Repeat the property for each competency that is required (in JSON-LD, use an array).

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/competencyRequired">
  <span>Category: <span property="schema:category">issue-1779</span></span>
  <span class="h" property="rdfs:label">competencyRequired</span>
  <span property="rdfs:comment">Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity.</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">Text</a></span>
  <span>rangeIncludes: <a property="http://schema.org/rangeIncludes" href="http://schema.org/URL">URL</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.

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>
<h2>Mapping to National Occupational Standards</h2>
<ul>
  <li>ASTFM401 Understand facilities management and its place in the organisation</li>
  <li>[etc]</li>
</ul>


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>
  <h2>Mapping to National Occupational Standards</h2>
  <ul>
    <li itemprop="competencyRequired"
        itemscope itemtype="http://schema.org/DefinedTerm">
      <span itemprop="termCode">ASTFM401</span>
      <span itemprop="name">Understand facilities management and its place in the organisation</span>
      <link itemprop="url" href="https://www.ukstandards.org.uk/PublishedNos/ASTFM401.pdf" />
      <link itemprop="inDefinedTermSet" href="https://www.ukstandards.org.uk/" />
    </li>
    <li>[etc]</li>
  </ul>
</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>
  <h2>Mapping to National Occupational Standards</h2>
  <ul>
    <li property="competencyRequired" typeof="DefinedTerm">
      <span property="termCode">ASTFM401</span>
      <span property="name">Understand facilities management and its place in the organisation</span>
      <link property="url" href="https://www.ukstandards.org.uk/PublishedNos/ASTFM401.pdf" />
      <link property="inDefinedTermSet" href="https://www.ukstandards.org.uk/" />
    </li>
    <li>[etc]</li>
  </ul>
</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.",
  "competencyRequired" : {
    "@type": "DefinedTerm",
    "termCode": "ASTFM401",
    "name": "Understand facilities management and its place in the organisation",
    "url": "https://www.ukstandards.org.uk/PublishedNos/ASTFM401.pdf",
    "inDefinedTermSet": "https://www.ukstandards.org.uk/"
  }
}
</script>