sig
  type t = {
    id : string;
    ruleId : string;
    physicalLocation : Sarif.PhysicalLocation.t;
    message : Sarif.Message.t;
    level : Sarif.Notification_kind.t;
    threadId : int;
    time : string;
    exn : Sarif.Sarif_exception.t;
    properties : Sarif.Properties.t;
  }
  val to_yojson : Sarif.Notification.t -> Yojson.Safe.t
  val of_yojson :
    Yojson.Safe.t ->
    Sarif.Notification.t Ppx_deriving_yojson_runtime.error_or
end