OBJECT

FitnessSystemRule

link GraphQL Schema definition

  • type FitnessSystemRule {
  • # When false, this threshold is configured but not evaluated for records.
  • isEnabled: Boolean!
  • # Warning level reached when this threshold is met: Notice, Warning, or Error (Ok
  • # means no issue).
  • state: WarningLevelEnum!
  • # Numeric threshold the indicator compares against, interpreted per indicator type
  • # (for example a count or a percentage).
  • value: Int
  • # Time window in days over which the indicator is measured, when the indicator
  • # type uses one.
  • days: Int
  • # Activity or related entity types this threshold applies to, when the indicator
  • # type is scoped to specific types.
  • entityTypes: [ID!]
  • # Period over which a change is measured for trend-based indicators: current week,
  • # last two weeks, or current month.
  • period: FitnessPeriodEnum
  • }