Occupation collection

Definition

A occupation collection is a specific categorisation of occupation-name concepts, independent from the occupation structure.

Description

Occupation collections are created to address the need for categorisations of occupation-name concepts beyond the groupings that already exist in the occupation structure. They enable flexibility in terms of non-hierarchical categorisations of the occupation-name concepts within the Taxonomy.

A occupation collection is represented as its own concept in the Taxonomy, see for example Kultur (a collection of occupation-name concepts related to the cultural sector), but can also be seen as a kind of metadata for the occupation-name concepts that are linked to the collection.

graph LR;
B --related--> A
    subgraph "occupation-collection" 
    A("Kultur")
    end
    subgraph "skill"
    B("Regissör");
    end

GraphQL examples

Below examples can be tested through our Graphi-QL GUI.

Get all occupation collections

query MyQuery {
  concepts(type: "occupation-collection") {
    id
    preferred_label
    definition
    type
  }
}

Get cultural occupations collection

query MyQuery {
  concepts(type: "occupation-collection") {
    id
    preferred_label
    type
    related(type: "occupation-name") {
      id
      preferred_label
      type
    }
  }
}