jobCategories
QUERY

A list of top-level job categories for the provided scheme.This query accepts browser tokens that include the query:ontologies scope.

Arguments

Name
Description
schemeId* 
String!
The scheme ID of the job categories.Currently, only seekAnz and seekAnzPublicTest are supported.
countryCode 
String
The country to list job categories for.This is a two-letter ISO 3166-1:2013 country code, in uppercase.Only use this field if your software has technical limitations that prevent it from dynamically providing a more specific position location to the jobCategories query. Provide positionProfile.positionLocation instead and omit this field where possible.
The partial position profile to list job categories for.This should include the same field values that will eventually be used to create or post the PositionProfile.

Result

Name
Description
The category of a job's occupation.

Sample

GraphQL
query ($schemeId: String!) {
  jobCategories(schemeId: $schemeId) {
    id {
      value
    }
  }
}