OBJECT

LicenseHistory

link GraphQL Schema definition

  • type LicenseHistory implements Node {
  • id: ID!
  • # The institution that issued the license.
  • institution: String
  • # The title of the license.
  • title: String!
  • # The license number.
  • licenseNumber: String
  • # The state in which the license was issued.
  • state: String
  • startDate: Time
  • endDate: Time
  • lastRenewedAt: Time
  • # Is this the suggested license for the user?
  • suggested: Boolean!
  • # Has this license been verified?
  • verified: Boolean!
  • # Has this license been confirmed by the user?
  • confirmed: Boolean!
  • # The raw status value of the license from the certifying board.
  • statusValue: String
  • # The ID of the certifying board.
  • certifyingBoardFk: ID
  • # The ID of the provider type.
  • providerTypeFk: ID
  • # If true, the user has opted to continue earning CE in this license period
  • # instead of beginning a new license period.
  • extendedCeEarningEnabled: Boolean!
  • # License history for a user.
  • user: User
  • certifyingBoard: CertifyingBoard
  • certifyingBoardSpecialization: CertifyingBoardSpecialization
  • providerType: ProviderType
  • # Audit trail for this license history record
  • audits: [LicenseHistoryAudit!]
  • # Summaries of education requirements for this license history
  • educationSummaries: [LicenseEducationSummary!]
  • educationRequirement: ContinuingEducationRequirement
  • }