OBJECT
LicenseHistory
link GraphQL Schema definition
- type LicenseHistory implements Node {
- : ID!
- # The institution that issued the license.
- : String
- # The title of the license.
- : String!
- # The license number.
- : String
- # The state in which the license was issued.
- : String
- : Time
- : Time
- : Time
- # Is this the suggested license for the user?
- : Boolean!
- # Has this license been verified?
- : Boolean!
- # Has this license been confirmed by the user?
- : Boolean!
- # The raw status value of the license from the certifying board.
- : String
- # The ID of the certifying board.
- : ID
- # The ID of the provider type.
- : ID
- # If true, the user has opted to continue earning CE in this license period
- # instead of beginning a new license period.
- : Boolean!
- # License history for a user.
- : User
- : CertifyingBoard
- : CertifyingBoardSpecialization
- : ProviderType
- # Audit trail for this license history record
- : [LicenseHistoryAudit!]
- # Summaries of education requirements for this license history
- : [LicenseEducationSummary!]
- : ContinuingEducationRequirement
- }