Свойство schema.org ?
Содержание: Описание, Какие должны быть типы, В каких типах используется, Ссылка на источник термина, Примеры использования.
Свойство competencyRequired
в Schema.org используется для обозначения знаний, навыков, способностей или личных качеств, которые необходимы для выполнения определенной задачи или достижения определенной цели. Это свойство может применяться в контексте образовательных ресурсов, профессиональных квалификаций или других ситуаций, где важно понимать, какие именно компетенции нужны для успешного выполнения работы или освоения материала.
Основная цель competencyRequired
заключается в том, чтобы четко определить требования к компетенциям, которые должны быть у человека или сущности. Это позволяет пользователям, таким как студенты или соискатели работы, лучше ориентироваться в том, что от них ожидается, а также помогает образовательным учреждениям и работодателям четко формулировать свои требования.
Свойство может использоваться в различных контекстах, например, в описаниях курсов, образовательных программ, профессиональных сертификатов или других ресурсов, связанных с обучением и карьерой. Оно помогает структурировать информацию и делает её более доступной для анализа и поиска, что, в свою очередь, способствует более эффективному обучению и профессиональному развитию.
Пример заметки или HTML разметки.
<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, встроенный в 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>
Пример, закодированный в формате RDFa, встроенный в 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>
Пример, закодированный в формате JSON-LD в теге <script> HTML.
<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>
Структурированное представление примера JSON-LD.