Unit at which the job is based

From Talent Marketplace Signaling Community Group
Talent Signal
Wiki Navigation
Main Page
Issues, use cases and requirements
Examples
Other useful links
Community group home page
email list for group
relevant work elsewhere

Issue Description: It should be able to provide the specific sub-department/facility/business unit at which the job is based (see issue 1829 points 13-15). Also arises from analysis of Junior software developer example posting.

Discussion: mail list June 2019, thread on unit at which the job is based.

  • Based on JDX, propose a new property of JobPosting for employmentUnit.

Proposal

Status: accepted in schema.org release 4.0 Oct 2019 see [issue 2296] and [pull request 2297]

employmentUnit:

Defintion: Department, unit and/or facility where the employee reports and/or in which the job is to be performed.
Expected Type: Organization

Note: The employmentUnit Organization will normally be a subOrganization of the hiringOrganization.

Example 1: Junior Software Developer

From Examples: Junior software developer where the hiring Organization is ACME Corp, and the position is described as Junior Software Developer (ITS - Division C).

{
    "@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"
        }
    }
}