Click or drag to resize

FieldType Enumeration

Field data type of an Open Discover export field. See ExportField.

Namespace: OpenDiscoverSDK.Interfaces.Platform.LoadFile
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[DataContractAttribute]
public enum FieldType
Members
Member nameValueDescription
YesNo0 Yes/No field type. This field type only accepts one of two values.
FixedLengthText1 Fixed-length text field type. Fixed length fields can be up to 4,000 characters in length. If larger than 4,000 characters they will be truncated at a length of 4,000 characters.
WholeNumber2 Whole number field type stores any positive or negative natural numbers (Int32). The allowed range is -2,147,483,647 to 2,147,483,647.
Date3 Date field type stores the date or date and time.
Decimal4 Decimal field type stores numeric values with decimals.
LongText5 Long text field is up to 2 GB in character size. This field is used for fields that require more characters than FixedLengthText supports.
Currency6 Currency field type stores numeric values in currency format (10 digits maximum for this field).
SingleChoice7 Single choice field type. A single choice field has a predetermined set of values called choices and only allows for a single choice.
MultipleChoice8 Multiple choice field type. A multiple choice field has a predetermined set of values called choices and only allows for multiple choices.
Remarks
The field type is useful when exporting load files into a legal review system.
See Also