OBJECT

LicenseHistoryAudit

link GraphQL Schema definition

  • type LicenseHistoryAudit implements Node {
  • id: ID!
  • # The action performed (CREATE, UPDATE, DELETE)
  • action: String!
  • # When the audit event occurred
  • createdAt: Time!
  • # ID of the user who performed the action, if applicable
  • userID: String
  • # IP address from which the action was performed
  • ipAddress: String
  • # Additional notes about the audit event
  • notes: String
  • # Previous institution value
  • institution: String
  • # Previous title value
  • title: String
  • # Previous license number value
  • licenseNumber: String
  • # Previous state value
  • state: String
  • # Previous start date value
  • startDate: Time
  • # Previous end date value
  • endDate: Time
  • # Previous suggested value
  • suggested: Boolean
  • # Previous verified value
  • verified: Boolean
  • # Previous confirmed value
  • confirmed: Boolean
  • # Previous status value
  • statusValue: String
  • # Previous certifying board ID
  • certifyingBoardFk: Int
  • # Previous provider type ID
  • providerTypeFk: Int
  • # The ID of the license history record being audited
  • licenseHistoryFk: ID!
  • # The license history record this audit entry relates to
  • licenseHistory: LicenseHistory!
  • }