experienceInPlaceOfEducation
A Schema.org PropertyThis term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.
- Canonical URL: https://schema.org/experienceInPlaceOfEducation
- Check for open issues.
Indicates whether a JobPosting will accept experience (as indicated by OccupationalExperienceRequirements) in place of its formal educational qualifications (as indicated by educationRequirements). If true, indicates that satisfying one of these requirements is sufficient.
Values expected to be one of these types |
---|
Boolean
|
Used on these types |
---|
JobPosting
|
Source
https://github.com/schemaorg/schemaorg/issues/2681
Examples
Example 1
Copied
Example notes or example HTML without markup.
Example of Job markup for experience standing in place of formal qualifications.
Example encoded as Microdata embedded in HTML.
N/A
Example encoded as RDFa embedded in HTML.
N/A
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.