OBJECT

FileMatch

Description

Data for a matched file.

link GraphQL Schema definition

  • type FileMatch {
  • # Time the scan detected the match.
  • detectedTime: DateTime
  • # Name of the file that was matched.
  • fileName: String!
  • # Size of the file that was matched.
  • fileSize: Long!
  • # Filepath that was matched.
  • filepath: String!
  • # Date of the snapshot when the match was first observed.
  • firstObservedSnapshotDate: DateTime
  • # FID of the first observed snapshot.
  • firstObservedSnapshotFid: UUID!
  • # Specifies whether the first observed snapshot has expired.
  • isFirstObservedSnapshotExpired: Boolean!
  • # Specifies whether the matched snapshot has expired.
  • isMatchedSnapshotExpired: Boolean!
  • # Specifies if the file is quarantined in the first observed snapshot.
  • isQuarantinedInFirstObservedSnapshot: Boolean!
  • # ID of the matched file being returned.
  • matchId: Long!
  • # Type of threat match.
  • matchType: IndicatorOfCompromiseKind!
  • # Date of the snapshot when the match was found.
  • matchedSnapshotDate: DateTime
  • # FID of the matched snapshot.
  • matchedSnapshotFid: UUID!
  • # FID of the object.
  • objectFid: UUID!
  • # The scanned object name.
  • objectName: String!
  • # Object type.
  • objectType: HierarchyObjectTypeEnum
  • }