Driving Licence

Definition

Swedish driving licences in accordance with Transportstyrelsen and EU.

Description

This single type schema contains driving license categories in Sweden, according to EU standard, and the description and limitation of each license.

Implicit licences

All but the “lowest” ranked license also contain relations to the licenses that are implicit within that level. The A2 licence, for instance, is implicitly related to AM and A1. These are lower level licenses for scooters that you are automatically allowed to drive if you carry the A2 license. See theGraphQL-example on how to query these relations.

GraphQL examples

The queries below can be tested through our GraphiQL interface.

Get driving licences

query MyQuery {
  concepts(type: "driving-licence") {
    id
    preferred_label
    short_description
    driving_licence_code_2013
    definition
    type
  }
}

Get implicit driving licences

query MyQuery {
  concepts(type: "driving-licence") {
    id
    preferred_label
    short_description
    driving_licence_code_2013
    definition
    type
    narrower {
      id
      preferred_label
      short_description
      driving_licence_code_2013
      definition
      type
    }
  }
}