OBJECT

SectionDescriptor

Describes a configuration section.

  • type SectionDescriptor {
  • # The string that uniquely identifies this section with regard to the parent
  • # collection.
  • sectionKey: String!
  • # The name of the section as it will be serialized in the configuration file. This
  • # is not `sectionKey`, and has none of the same guarantees, namely, uniqueness.
  • sectionName: String!
  • # Describes the section in detail.
  • description: String!
  • # The human readable name of this section.
  • displayName: String!
  • # Describes the options contained within this configuration section.
  • optionDescriptors: [OptionDescriptor!]!
  • }