Module Values.CvssSource

CVSS scores from the advisory related to the vulnerability.

Sourcetype nonrec t = {
  1. version : NonEmptyString.t option;
    (*

    The version of CVSS for the CVSS score.

    *)
  2. baseScore : Double.t option;
    (*

    The base CVSS score.

    *)
  3. baseVector : NonEmptyString.t option;
    (*

    The base scoring vector for the CVSS score.

    *)
  4. source : NonEmptyString.t option;
    (*

    The origin of the original CVSS score and vector.

    *)
  5. adjustments : AdjustmentList.t option;
    (*

    Adjustments to the CVSS metrics.

    *)
}
Sourceval make : ?version:??? -> ?baseScore:??? -> ?baseVector:??? -> ?source:??? -> ?adjustments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t