employmentUnit
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/employmentUnit
- Check for open issues.
Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.
| Values expected to be one of these types |
|---|
Organization
|
| Used on these types |
|---|
JobPosting
|
Source
https://github.com/schemaorg/schemaorg/issues/2296
Examples
Example 1
Copied
Example notes or example HTML without markup.
JobPosting for Junior Software Developer in ITS Division C of ACME Corp
Example encoded as Microdata embedded in HTML.
<!-- JSONLD only example -->
Example encoded as RDFa embedded in HTML.
<!-- JSONLD only example -->
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "JobPosting",
"title": "Junior software developer",
"hiringOrganization" : {
"@type": "Organization",
"@id": "http://www.example.com/acme#Organization",
"name": "ACME Corp.",
"url": "www.example.com"
},
"employmentUnit" : {
"@type": "Organization",
"name": "ITS - Division C",
"parentOrganization" : {
"@id": "http://www.example.com/acme#Organization"
}
}
}
</script>
Structured representation of the JSON-LD example.