OBJECT

DhrcScoreMetric

Description

Metric represents a specific metric as included in the score calculation.

link GraphQL Schema definition

  • type DhrcScoreMetric {
  • # The value of the metric.
  • value: Float!
  • # The maximum value of the metric.
  • maxValue: Float!
  • # The impact the metric had on the score calculation. Note that the impact
  • # is scaled by the weight before being used in the score calculation.
  • impact: Float!
  • # The weight of the impact value for the score calculation.
  • weight: Float!
  • # The metric version. Increase by one every time the metric definition is
  • # updated.
  • version: Int!
  • # The metric identity.
  • metric: DhrcMetric!
  • }