INTERFACE

ArtifactVulnerability

Represents a software vulnerability that can potentially be exploited

link GraphQL Schema definition

  • interface ArtifactVulnerability {
  • # Domain-specific artifact vulnerability instance identifier - CVE_ID
  • artifactVulnerabilityId: String!
  • # CVE Numbering Authority
  • cna: String
  • # CVE description
  • description: String!
  • # Global opaque identifier to meet Node contract
  • id: ID!
  • # CVE name
  • name: String!
  • # Date on which vulnerability is published, e.g. Expressed in UTC ISO-8601 format
  • # "2022-11-22T02:15:00Z"
  • publishedDate: DateTime!
  • # CVSS score
  • scores: [ArtifactVulnerabilityScore!]
  • # Threat level of vulnerability
  • severity: String
  • # Optional Date on which the vulnerability was reassessed/updated, e.g. Expressed
  • # in UTC ISO-8601 format "2022-11-22T02:15:00Z"
  • updatedDate: DateTime
  • }