Show / Hide Table of Contents

Class LibraryVulnerability

A library vulnerability.

Inheritance
object
LibraryVulnerability
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class LibraryVulnerability

Properties

CvssScore

Declaration
[Required(ErrorMessage = "CvssScore is required.")]
[JsonProperty(PropertyName = "cvssScore")]
public float? CvssScore { get; set; }
Property Value
Type Description
float?

The Common Vulnerability Scoring System (CVSS) score. If cvssScore is not available, it will be set to -1.

Remarks

Required

VulnerabilityKey

Declaration
[Required(ErrorMessage = "VulnerabilityKey is required.")]
[JsonProperty(PropertyName = "vulnerabilityKey")]
public string VulnerabilityKey { get; set; }
Property Value
Type Description
string

The Vulnerability Key, could be CVE or GitHub Security Advisory or others e.g. GHSA-1234-abcd-5678 or CVE-2019-1234

Remarks

Required

In this article
Back to top