⚠️ Важно: данный сайт не имеет отношения к владельцам schema.org, это всего лишь любительский (неофициальный) перевод. Сайт сделан для тех кто плохо воспринимает технический английский. Оригинальную и актуальную информацию на английском языке вы можете найти тут: schema.org/competencyRequired.

competencyRequired

Определение микроразметки competencyRequired на schema.su

competencyRequired - Свойство Schema.org
Описание: Знание, умение, способность или личная характеристика, которую должен продемонстрировать человек или другая сущность для выполнения какого-либо действия, такого как получение образовательного или профессионального удостоверения или понимание LearningResource.
Знание, умение, способность или личная характеристика, которую должен продемонстрировать человек или другая сущность для выполнения какого-либо действия, такого как получение образовательного или профессионального удостоверения или понимание LearningResource. Это свойство может быть использовано для конкретизации требуемых навыков или знаний в определенной области. При использовании данной микроразметки, важно точно определить необходимые компетенции для успешного выполнения конкретного действия, чтобы предоставить пользователям точную информацию и улучшить их опыт взаимодействия с контентом.

Values expected to be one of these types

Source

https://github.com/schemaorg/schemaorg/issues/1779


Examples

Example 1
Copied
Example notes or example HTML without 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>
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://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="https://schema.org/DefinedTerm">
    <meta itemprop="name" content="SCQF Level 7" />
    <link itemprop="inDefinedTermSet" href="https://www.sqa.org.uk/sqa/71377.html" />
  </div>
  <div itemprop="credentialCategory"
       itemscope itemtype="https://schema.org/DefinedTerm">
    <meta itemprop="name" content="Higher National Certificate" />
    <meta itemprop="termCode" content="HNC" />
  </div>
  <h2>Mapping to National Occupational Standards</h2>
  <ul>
    <li itemprop="competencyRequired"
        itemscope itemtype="https://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>
Example encoded as RDFa embedded in HTML.
<div  vocab="https://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="DefinedTerm">
    <meta property="name" content="SCQF Level 7" />
    <link property="inDefinedTermSet" href="https://www.sqa.org.uk/sqa/71377.html" />
  </div>
  <div property="credentialCategory" typeof="DefinedTerm">
    <meta property="name" content="Higher National Certificate" />
    <meta property="termCode" content="HNC" />
  </div>
  <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>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://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"
  },
  "credentialCategory" : {
    "@type": "DefinedTerm",
    "name": "Higher National Certificate",
    "termCode": "HNC"
  },
  "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>
Structured representation of the JSON-LD example.

Обсуждение "competencyRequired"