OBJECT
ClassificationCategory
link GraphQL Schema definition
- type ClassificationCategory implements Node {
- : ID!
- # The name of the classification category (e.g., 'Infection Control',
- # 'Bioterrorism').
- : String!
- # Markdown content containing definition, concepts, nuances, and other
- # classification details.
- : String!
- # Whether this classification category is active.
- : Boolean!
- # Display/processing order.
- : Int!
- : Time!
- : Time!
- # The topics associated with this classification category.
- : [Topic!]
- # The classification models that use this category.
- : [ContentClassificationModel!]
- # The reinforcement documents for this category.
- : [ClassificationReinforcementDocument!]
- }