Package version:

Represents a field in an index definition, which describes the name, data type, and search behavior of a field.

interface ComplexField {
    fields?: SearchField[];
    name: string;
    type: ComplexDataType;
}

Properties

Properties

fields?: SearchField[]

A list of sub-fields.

name: string

The name of the field, which must be unique within the fields collection of the index or parent field.

The data type of the field. Possible values include: 'Edm.ComplexType','Collection(Edm.ComplexType)'