Module Values.SeveritySource

Provides the numerical and qualitative representations of a finding's severity.

Sourcetype nonrec t = {
  1. description : SeverityDescription.t option;
    (*

    The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).

    *)
  2. score : Awso.Import.Int64.t option;
    (*

    The numerical representation of the finding's severity, ranging from 1 (least severe) to 3 (most severe).

    *)
}
Sourceval make : ?description:??? -> ?score:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Awso.Import.Int64.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