OBJECT

NUR

A code from the NUR schema

link GraphQL Schema definition

  • type NUR implements SubjectCode {
  • # Whether the schema maintainers consider the code active or not
  • active: Boolean!
  • # The identifying code
  • code: String
  • # The text description of the subject code
  • description: String
  • # Whether the code is the main one in this scheme for the work
  • main: Boolean! @deprecated( reason: "Multiple main codes can now be defined within the schema" )
  • # The notes associated with the code
  • notes: String
  • # The parent, grandparent, and subsequent ancestor categories, if any
  • parentCategories: [NUR!]!
  • # The parent of this current code, if one exists
  • parentCode: String
  • # The scheme under which the code was issued
  • scheme: SubjectCodeSchemeCategory!
  • }