OBJECT

EventCustomRule

link GraphQL Schema definition

1type EventCustomRule {
2
3id: ID!
4
5# The name of the custom rule
6name: String!
7
8# The status of the custom rule
9status: EventCustomRuleStatus!
10
11# The event type
12eventType: String!
13
14# The event name
15eventName: String!
16
17# The description of the custom rule
18description: String
19
20# The owner org of the custom rule
21organizationId: ID!
22
23# The event actions as a mutated copy of EventActionTemplate
24actions: JSONData
25
26# The params to be used in the actions
27params: JSONData
28
29}