Citizenship code

Definition

Codes used to indicate if a person is a citizen of either:

  1. Sweden
  2. The nordics
  3. Within EU
  4. Outside of EU

Description

Each country has a citizenship code tied to it. The codes are mainly used in various tools within Arbetsförmedlingen to broadly indicate a job seeker's citizenship without having to display to the user their nationality.

Here, Norge, Island, Färöarna, Åland and Grönland are included in the nordics and Lichtenstein in the EU.

graph LR
    A(country) <-->|related| B(citizenship-code)

GraphQL examples

The queries below can be tested through our GraphiQL interface.

query MyQuery {
  concepts(type: "country") {
    id
    preferred_label
    type
    iso_3166_1_alpha_2_2013
    iso_3166_1_alpha_3_2013
    related(type: "citizenship") {
      id
      preferred_label
      type
      uri
    }
  }
}