INTERFACE

IemPolicy

link GraphQL Schema definition

  • interface IemPolicy {
  • # Policy ID
  • id: ID!
  • # Index of policy
  • index: Int!
  • # Title
  • title: String!
  • # Level of policy
  • level: PolicyLevel!
  • # Is policy disabled
  • disabled: Boolean!
  • # Is policy archived
  • archived: Boolean!
  • # Indicates the policy's schema
  • schema: SchemaType!
  • # Indicates if the policy hits on continuous events
  • continuous: Boolean!
  • # Should take snapshot
  • snapshot: Boolean
  • # Indicates if the policy is system generated
  • system: Boolean!
  • # Key of policy
  • key: String!
  • # Event type info regarding this policy
  • eventTypeDetails: EventTypeDetails!
  • # Site ID
  • site: ID!
  • }