OBJECT
SectionDescriptor
Describes a configuration section.
- type SectionDescriptor {
- # The string that uniquely identifies this section with regard to the parent
- # collection.
- : 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.
- : String!
- # Describes the section in detail.
- : String!
- # The human readable name of this section.
- : String!
- # Describes the options contained within this configuration section.
- : [OptionDescriptor!]!
- }