sig
  type t = {
    location : Sarif.ArtifactLocation.t;
    guid : string;
    itemCount : int;
    properties : Sarif.Properties.t;
  }
  val to_yojson : Sarif.ExternalPropertyFileReferences.t -> Yojson.Safe.t
  val of_yojson :
    Yojson.Safe.t ->
    Sarif.ExternalPropertyFileReferences.t
    Ppx_deriving_yojson_runtime.error_or
  val _ :
    Yojson.Safe.t ->
    Sarif.ExternalPropertyFileReferences.t
    Ppx_deriving_yojson_runtime.error_or
  val create :
    ?location:Sarif.ArtifactLocation.t ->
    ?guid:string ->
    ?itemCount:int ->
    ?properties:Sarif.Properties.t ->
    unit -> Sarif.ExternalPropertyFileReferences.t
  val default : Sarif.ExternalPropertyFileReferences.t
end