Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 1.27 KB

FieldReferenceData.md

File metadata and controls

34 lines (30 loc) · 1.27 KB

FieldReferenceData

Properties

Name Type Description Notes
value String The field identifier. [optional]
displayName String The display name of the field. [optional]
orderable OrderableEnum Whether the field can be used in a query's `ORDER BY` clause. [optional]
searchable SearchableEnum Whether the content of this field can be searched. [optional]
auto AutoEnum Whether the field provide auto-complete suggestions. [optional]
cfid String If the item is a custom field, the ID of the custom field. [optional]
operators List<String> The valid search operators for the field. [optional]
types List<String> The data types of items in the field. [optional]

Enum: OrderableEnum

Name Value
TRUE "true"
FALSE "false"

Enum: SearchableEnum

Name Value
TRUE "true"
FALSE "false"

Enum: AutoEnum

Name Value
TRUE "true"
FALSE "false"