OBJECT
HealthCategory
link GraphQL Schema definition
- type HealthCategory {
- # Unique identifier of the health category.
- : UUID!
- # Display name of the health category (for example Good, Watch, Critical).
- : String!
- # When true, the label is treated as a translation key and localized in the UI;
- # otherwise the literal label text is shown.
- : Boolean!
- # Upper health-score threshold of this category. A record falls into the category
- # whose threshold its score does not exceed. The critical category uses -1.
- : Int!
- # Color used to render this category in the UI, encoded as an integer.
- : Int!
- }