Module Values.FrameworkMetadataSource

The metadata of a framework, such as the name, ID, or description.

Sourcetype nonrec t = {
  1. name : AssessmentName.t option;
    (*

    The name of the framework.

    *)
  2. description : AssessmentFrameworkDescription.t option;
    (*

    The description of the framework.

    *)
  3. complianceType : ComplianceType.t option;
    (*

    The compliance standard that's associated with the framework. For example, this could be PCI DSS or HIPAA.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?logo:??? -> ?complianceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AssessmentName.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