OBJECT

ThreatHunt

Description

Represents the configuration and statistics for a threat hunt.

link GraphQL Schema definition

  • type ThreatHunt {
  • # ID of the threat hunt.
  • huntId: String!
  • # Status of the threat hunt.
  • status: ThreatHuntStatus!
  • # The stats based on results of the threat hunt.
  • stats: ThreatHuntStats
  • # Name of the threat hunt.
  • name: String!
  • # Start time of the threat hunt.
  • startTime: DateTime
  • # Type of threat hunt.
  • huntType: ThreatHuntType!
  • # The details/configuration of the threat hunt.
  • huntDetails: ThreatHuntDetails!
  • # User who created the threat hunt.
  • createdBy: User
  • }