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

credentialCategory

Свойство schema.org ?

Этот термин находится в "новой" области — обратная связь по реализации и использование в приложениях и на веб-сайтах могут помочь улучшить определения.

Описание:

Категория или тип описываемой учетной записи, например "степень", "сертификат", "значок" или более конкретный термин.

Свойство credentialCategory в Schema.org используется для обозначения категории или типа удостоверения, которое описывается в определённой структуре данных. Это может относиться к различным видам квалификаций, которые человек может получить, например, дипломы, сертификаты или значки.

Основная цель credentialCategory — помочь организовать и классифицировать информацию о различных удостоверениях, чтобы пользователи и системы могли легче понимать и обрабатывать эту информацию. Это свойство особенно полезно в контексте образовательных учреждений, профессиональных ассоциаций и платформ, предлагающих онлайн-курсы, где важно чётко указать, какой именно тип квалификации или удостоверения предоставляется.

Использование credentialCategory также способствует улучшению поиска и фильтрации информации. Например, если кто-то ищет конкретный тип квалификации, наличие чёткого обозначения категории позволяет быстро находить нужные данные. Это свойство также может помочь в интеграции данных между различными системами и платформами, обеспечивая стандартизированный способ описания удостоверений.

Таким образом, credentialCategory является важным инструментом для структурирования информации о квалификациях и удостоверениях, что делает её более доступной и понятной для пользователей и систем.

Ожидается, что значения будут одного из этих типов

Используется в этих типах

Примеры

Пример 1

Пример заметки или HTML разметки.


Example of Job markup for experience standing in place of formal qualifications.

Пример, закодированный в формате JSON-LD в теге <script> HTML.


<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "JobPosting",
  "title": "Software Engineer",
  "educationRequirements": {
    "@type": "EducationalOccupationalCredential",
    "credentialCategory": "bachelor degree"
  },
  "experienceRequirements": {
    "@type": "OccupationalExperienceRequirements",
    "monthsOfExperience": "60"
  },
  "experienceInPlaceOfEducation": true
}
</script>

Структурированное представление примера JSON-LD.

@context
https://schema.org/
@type
JobPosting
title
Software Engineer
educationRequirements
@type
EducationalOccupationalCredential
credentialCategory
bachelor degree
experienceRequirements
@type
OccupationalExperienceRequirements
monthsOfExperience
60
experienceInPlaceOfEducation
1

Пример 2

Пример заметки или 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.

@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/

Пример 3

Пример заметки или HTML разметки.


<h1>Certified Safety Professional</h1>
<p>Certified Safety Professionals (CSP) are persons
  who perform at least 50% of professional level safety duties, including
  making worksite assessments to determine risks, assessing potential hazards
  and controls, evaluating risks and hazard control measures, investigating
  incidents, maintaining and evaluating incident and loss records, and
  preparing emergency response plans.</p>

Пример, закодированный в формате Microdata, встроенный в HTML.


<div itemscope itemtype="https://schema.org/EducationalOccupationalCredential">
<h1 itemprop="name">Certified Safety Professional</h1>
<link itemprop="url" href="https://www.bcsp.org/CSP" />
<p itemprop="description">Certified Safety Professionals (CSP) are persons
  who perform at least 50% of professional level safety duties, including
  making worksite assessments to determine risks, assessing potential hazards
  and controls, evaluating risks and hazard control measures, investigating
  incidents, maintaining and evaluating incident and loss records, and
  preparing emergency response plans.</p>
  <div itemprop="credentialCategory"
       itemscope itemtype="https://schema.org/DefinedTerm">
    <meta itemprop="name" content="Certification" />
    <link itemprop="url" href="http://purl.org/ctdl/terms/Certification" />
    <div itemprop="inDefinedTermSet" itemscope
         itemtype="https://schema.org/DefinedTermSet">
      <meta itemprop="name" content="Credential Transparency Description Language"/>
      <link itemprop="url" content="http://purl.org/ctdl/terms/" />
    </div>
  </div>
  <link itemprop="additionalType" href="http://purl.org/ctdl/terms/Certification">
</div>

Пример, закодированный в формате RDFa, встроенный в HTML.


<div vocab="https://schema.org/"
     typeof="EducationalOccupationalCredential">
<h1 property="name">Certified Safety Professional</h1>
<link property="url" href="https://www.bcsp.org/CSP" />
<p property="description">Certified Safety Professionals (CSP) are persons
  who perform at least 50% of professional level safety duties, including
  making worksite assessments to determine risks, assessing potential hazards
  and controls, evaluating risks and hazard control measures, investigating
  incidents, maintaining and evaluating incident and loss records, and
  preparing emergency response plans.</p>
  <div property="credentialCategory" typeof="DefinedTerm"
       resource="http://purl.org/ctdl/terms/Certification">
    <meta property="name" content="Certification" />
    <div property="inDefinedTermSet" typeof="https://schema.org/DefinedTermSet"
         resource="http://purl.org/ctdl/terms/">
      <meta property="name" content="Credential Transparency Description Language"/>
    </div>
  </div>
</div>

Пример, закодированный в формате JSON-LD в теге <script> HTML.


<script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": [
            "EducationalOccupationalCredential"
        ],
        "name": "Certified Safety Professional",
        "url": "https://www.bcsp.org/CSP",
        "description": "Certified Safety Professionals (CSP) are persons who perform at least 50% of professional level safety duties, including making worksite assessments to determine risks, assessing potential hazards and controls, evaluating risks and hazard control measures, investigating incidents, maintaining and evaluating incident and loss records, and preparing emergency response plans.",
        "credentialCategory": {
            "@type": "DefinedTerm",
            "@id": "http://purl.org/ctdl/terms/Certification",
            "name": "Certification",
            "inDefinedTermSet": {
                "@type": "DefinedTermSet",
                "@id": "http://purl.org/ctdl/terms/",
                "name": "Credential Transparency Description Language"
            }
        }
    }
</script>

Структурированное представление примера JSON-LD.

@context
https://schema.org
@type
0
EducationalOccupationalCredential
name
Certified Safety Professional
url
https://www.bcsp.org/CSP
description
Certified Safety Professionals (CSP) are persons who perform at least 50% of professional level safety duties, including making worksite assessments to determine risks, assessing potential hazards and controls, evaluating risks and hazard control measures, investigating incidents, maintaining and evaluating incident and loss records, and preparing emergency response plans.
credentialCategory
@type
DefinedTerm
@id
http://purl.org/ctdl/terms/Certification
name
Certification
inDefinedTermSet
@type
DefinedTermSet
@id
http://purl.org/ctdl/terms/
name
Credential Transparency Description Language
Автор: Семён Авдосов [schema.su]
Дата публикации: 16.11.2024
Дата обновления: 20.11.2024
Комментарии
Новые материалы на сайте