employmentUnit
This term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.
- Canonical URL: http://schema.org/employmentUnit
- Leave public feedback on this term 💬
- Check for open issues.
- 'employmentUnit' is mentioned in the pending extention.
| Values expected to be one of these types |
|---|
Organization
|
| Used on these types |
|---|
JobPosting
|
Source
https://github.com/schemaorg/schemaorg/issues/2296
ExamplesJobPosting for Junior Software Developer in ITS Division C of ACME Corp
<!-- JSONLD only example -->
<!-- JSONLD only example -->
<script type="application/ld+json">
{
"@context": "http://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>