OBJECT
PolicyFinding
Policy findings
link GraphQL Schema definition
- type PolicyFinding {
- # Id
- : ID!
- # Type info regarding this policy finding
- : EventTypeDetails!
- # Category of the event type
- : EventCategoryType!
- # The policy that caused this finding
- : Policy!
- # The title of the policy from which the finding originated
- : String!
- # Severity of the finding
- : PolicyLevel!
- # Status of the finding
- : FindingStatus!
- # The src assets of the finding
- #
- # Arguments
- # after: Returns the items in the list that come after the
- # specified cursor.
- # first: Returns the first n items from the list.
- # before: Returns the items in the list that come before the
- # specified cursor.
- # last: Returns the last n items from the list.
- (: String, : Int, : String, : Int): LeanAssetConnection!
- # List of the names of the src assets
- : [String]
- # The src ips of all events participating in this finding
- : [String]
- # The dst assets of the finding
- #
- # Arguments
- # after: Returns the items in the list that come after the
- # specified cursor.
- # first: Returns the first n items from the list.
- # before: Returns the items in the list that come before the
- # specified cursor.
- # last: Returns the last n items from the list.
- (: String, : Int, : String, : Int): LeanAssetConnection!
- # List of the names of the dst assets
- : [String]
- # The dst ips of all events participating in this finding
- : [String]
- # The policy hits that this finding consists of
- : [Event!]
- # Number of active (non-resolved) hits for this finding
- : Int
- # The first hit time since creation or mitigation
- : Time!
- # The last time this finding received and event
- : Time!
- # The id of the last hit that happened on this finding
- : String
- # List of protocols used in the hits that consist this finding
- : [String!]
- # Number of hits from the last time finding became active
- : Int
- # Number of resolved hits for this finding
- : Int
- # List of types of both src and dst assets
- : [AssetType]
- # List of criticality values of both src and dst assets
- : [Criticality]
- # List of vendors of both src and dst assets
- : [String]
- # List of families of both src and dst assets
- : [String]
- # List of models of both src and dst assets
- : [String]
- # List of purdue levels values of all assets in src and dst
- : [PurdueLevel]
- # List of locations of both src and dst assets
- : [String]
- # List of tags of both src and dst assets
- : [String]
- # Id of the plugin this finding associates to
- : Int
- # Name of the plugin this finding associates to
- : String
- # Synopsis of the plugin this finding associates to
- : String
- # Description of the plugin this finding associates to
- : String
- # Solution of the plugin this finding associates to
- : String
- # MITRE ICS techniques of the plugin this finding associates to
- : [String!]
- # MITRE ICS tactics of the plugin this finding associates to
- : [String!]
- # Who resolved the finding, in case it is fixed
- : String
- # When finding was resolved, in case it is fixed
- : Time
- # Resolve comment on the finding, in case it is fixed
- : String
- # Trend of how many hits happen each given window of time
- #
- # Arguments
- # window: [Not documented]
- (: Int): PolicyFindingTrend
- }