Note: you are viewing the development version of Schema.org. See How we work for more details.

employmentUnit

A Schema.org Property

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.
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.