Keyword

Definition

A broad concept, often referring to a larger, not necessarily occupation-specific, phenomenon or area.

Description

Keywords are terms used to refer to other concepts. A keyword can describe, for example, an area or a phenomenon that may be related to one or more occupation name concepts. Search terms are often broad, with connections to many other concepts. An example is the concept of Juridik, which is connected to a large number of concepts within the field of law. Search terms can also be linked to employment types and educational fields (within SUN2020). The example below shows how a search term relates to different occupation name concepts.

Below is an example on how a keyword related to a number of different occupation name concepts.

graph LR;
B --related--> A
B --related--> C
B --related--> D
    subgraph "occupation-name concept" 
    A("Ambulanssjuksköterska")
    C(Ambulanssjukvårdare)
    D("Sjuktransportör")
    end
    subgraph "keyword"
    B("Ambulans");
    end

Keywords are always connected to occupation name concepts with the relation type related.

Keywords and job titles

Just like keywords, job titles are terms that can be used to refer to occupation name concepts. There are however a number of characteristics that separates them:

  • keywords can be connected to multiple types of concepts, wheras job titles can only be connected to occupation-name concepts (LINK).
  • job titles are much more specific than keywords
  • a job titles usually only refers to one occupation-name concept (LINK), whereas a keyword is usually related to a number of concepts

Below are a number of examples depicting the differences.

Regarding job titles:

Regarding keywords:

Please note that only a limited number of relationships are shown above, for example Avlopp and Järnväg are related to many more occupation name concepts (LINK).

Graph-QL examples

The queries below can be tested through our GraphiQL interface.

All occupation-name concepts with relations to keywords

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