sig
  type t = {
    id : string;
    message : Sarif.Message.t;
    locations : Sarif.ThreadFlowLocation.t list;
    properties : Sarif.Properties.t;
  }
  val to_yojson : Sarif.ThreadFlow.t -> Yojson.Safe.t
  val of_yojson :
    Yojson.Safe.t -> Sarif.ThreadFlow.t Ppx_deriving_yojson_runtime.error_or
end