OBJECT

CertificateDetails

Description

Certificate information.

link GraphQL Schema definition

  • type CertificateDetails {
  • # ID of the certificate.
  • certId: String!
  • # Name of the certificate.
  • name: String!
  • # Indicates whether the certificate is associated with a private key.
  • hasKey: Boolean!
  • # Expiration date for the certificate.
  • expiration: DateTime!
  • # Purpose of the certificate.
  • usedBy: String!
  • # Description of the certificate.
  • description: String
  • # Indicates whether the certificate is added to the trust store.
  • isTrusted: Boolean
  • }