OBJECT
SupplementalField
link GraphQL Schema definition
- type SupplementalField {
- # Whether the field is Mandatory, Conditional, or Optional
- : RequiredDesignation!
- # The name of the supplemental field
- : String
- # INLT code for field used in the API (see PGAInput)
- : String!
- # INLT type used in GraphQL schema
- : String!
- # Whether the field is a list of types
- : Boolean
- # If type is not a scalar, the sub-fields of the type
- : [SupplementalField!]
- # Description of field, including logic for conditional requirement
- : String
- }