OBJECT

ClassificationCategory

link GraphQL Schema definition

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