INTERFACE

InsightRule

Base Interface for insight rules

link GraphQL Schema definition

  • interface InsightRule {
  • # Status of the Rule
  • active: Boolean!
  • # The user who created the Rule
  • createdBy: User!
  • # Time at which the Rule was created in UTC ISO-8601 format
  • creationTime: DateTime!
  • # Description of the Rule
  • description: LocalizedString!
  • # opaque unique id of a rule
  • id: ID!
  • # Time at which the Rule was last updated in UTC ISO-8601 format
  • lastUpdateTime: DateTime
  • # The user who last updated the Rule
  • lastUpdatedBy: User
  • # Name of the rule
  • name: LocalizedString!
  • }