OBJECT
DhrcActiveRecommendation
Description
Recommendation represents a single textual recommendation how to increase the score for a specific category. Recommendations are derived from a set of metrics.
link GraphQL Schema definition
- type DhrcActiveRecommendation {
- # The key uniquely identifies the type of the recommendation. One use-case is
- # for translation of the recommendation message.
- DhrcRecommendationKey! :
- # The category that the recommendation belong to.
- DhrcCategory! :
- # The time that the recommendation was compiled from the set of metrics.
- DateTime :
- # The earliest (oldest) metric used to compile the recommendation.
- DateTime :
- # The weight of the issue this recommendation aims to resolve. Heavier means
- # the issue is more severe.
- Float! :
- # The textual recommendation compiled by the service, always in English.
- String! :
- # The translation arguments of the recommendation. Stored as key/value pairs.
- DhrcKeyValue!]! : [
- }