Values.RuleResultSourceRepresents the result of a single rule within a configuration check.
type nonrec t = {id : RuleResultId.t option;The unique identifier of the rule result.
*)description : String_.t option;A description of what the rule validates.
*)status : RuleResultStatus.t option;The status of the rule result.
*)message : String_.t option;A message providing details about the rule result.
*)metadata : RuleResultMetadata.t option;Additional metadata associated with the rule result.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of RuleResultMetadataKey.t ]
* [> `String of RuleResultMetadataValue.t ])
list
| `String of RuleResultId.t ])
list ]