educationRequirements
A Schema.org PropertyThis term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.
- Canonical URL: http://schema.org/educationRequirements
- Leave public feedback on this term 💬
- Check for open issues.
Educational background needed for the position or Occupation.
Values expected to be one of these types |
---|
EducationalOccupationalCredential |
Used on these types |
---|
JobPosting |
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.