Field data type of an Open Discover export field. See
ExportField.
Namespace: OpenDiscoverSDK.Interfaces.Platform.LoadFileAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax[DataContractAttribute]
public enum FieldType
Members| Member name | Value | Description |
|---|
| YesNo | 0 |
Yes/No field type. This field type only accepts one of two values.
|
| FixedLengthText | 1 |
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.
|
| WholeNumber | 2 |
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.
|
| Date | 3 |
Date field type stores the date or date and time.
|
| Decimal | 4 |
Decimal field type stores numeric values with decimals.
|
| LongText | 5 |
Long text field is up to 2 GB in character size. This field is used for fields that require more characters than FixedLengthText supports.
|
| Currency | 6 |
Currency field type stores numeric values in currency format (10 digits maximum for this field).
|
| SingleChoice | 7 |
Single choice field type. A single choice field has a predetermined set of values called choices and only allows for a single choice.
|
| MultipleChoice | 8 |
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