OBJECT
FieldValidator
link GraphQL Schema definition
- type FieldValidator {
- # When true, the field must be filled in.
- : Boolean
- # When true, the field is required only while its own step is the active step of a
- # multi-step form.
- : Boolean
- # Minimum accepted value — a number or ISO date depending on the field type.
- : String
- # Maximum accepted value — a number or ISO date depending on the field type.
- : String
- # Conditional formula that must evaluate to true for the value to be accepted.
- : FormulaValidator
- # When true, the value must be a valid email address.
- : Boolean
- # When true, the value must be a valid URL.
- : Boolean
- # Key grouping this field with others, of which at least one must be filled in.
- : String
- # Minimum number of selections required for a multi-select field.
- : Int
- # When true, the relation must point to a parent-account relationship.
- : Boolean
- # When true, the field accepts a date range rather than a single date.
- : Boolean
- # Allowed integer-valued options, as name/value pairs.
- : [IntEnumItem]
- # Allowed bit-flag options, as name/value pairs.
- : [IntEnumItem]
- # When true, an empty value is explicitly allowed.
- : Boolean
- # When true, exactly one field in the combined group must be filled in.
- : Boolean
- }