OBJECT

UserCompetency

A competency linked to a user.

link GraphQL Schema definition

  • type UserCompetency {
  • # The unique ID.
  • id: Int!
  • # The user associated to the user competency
  • user: User
  • # The competency associated to the user competency
  • competency: Competency
  • # The time the user competency was created.
  • created_time: DateTime
  • # The date the user competency will expiry
  • expiry_time: DateTimeExpression
  • # The attachment url.
  • attachment: String
  • # The description of the user competency.
  • description: String
  • # The status of the competency.
  • status: ExpiryStatuses!
  • # The date the user competency was issued
  • issue_date: DateTimeExpression
  • # True if this user competency is active. For competencies, the active version is
  • # the most recent edit for that competency.
  • is_active: Boolean!
  • # True if this user competency is disabled. Disabled competencies don't contribute
  • # to compliance checks or alerts
  • is_disabled: Boolean!
  • }