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

Требования к образованию

Образование, необходимое для должности или профессии.

educationRequirements - Свойство Schema.org
Описание: Образовательный фон, необходимый для должности или профессии.

Микроразметка educationRequirements определяет образовательные требования, необходимые для конкретной должности или профессии. Данная микроразметка важна для поисковых систем, так как помогает уточнить информацию о необходимых квалификациях кандидатов. Советуем детально заполнить это поле, чтобы повысить вероятность привлечения подходящих кандидатов.

Values expected to be one of these types

Used on these types

Source

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

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


Examples

Example 1
Copied
Example notes or example HTML without markup.
<h1>Occupation: Research Scientist</h1>
<h2>educationRequirements"</h2>
<p>PhD or equivalent<p>
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://schema.org/Occupation">
 <h1>Occupation: <span itemprop="name"> Research Scientist</span></h1>
 <h2>qualifications</h2>
 <p itemprop="educationRequirements" itemscope
    itemtype="https://schema.org/EducationalOccupationalCredential">
  <span itemprop="educationalLevel">PhD or equivalent</span>
 </p>
</div>
Example encoded as RDFa embedded in HTML.
<div vocab="https://schema.org/" typeof="https://schema.org/Occupation">
 <h1>Occupation: <span property="name"> Research Scientist</span></h1>
 <h2>qualifications</h2>
 <p property="educationRequirements"
    typeof="https://schema.org/EducationalOccupationalCredential">
  <span property="educationalLevel">PhD or equivalent</span>
 </p>
</div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "Occupation",
  "name": "Research Scientist",
  "qualifications": {
    "@type": "EducationalOccupationalCredential",
    "educationalLevel": "PhD or equivalent"
  }
}
</script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
Example of Job markup for experience standing in place of formal qualifications.
Example encoded as JSON-LD in a HTML script tag.
<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>
Structured representation of the JSON-LD example.

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