Index Object


An index is a map of a collection's data, organized according to specific fields to increase query speed.

Properties
namestringminLength 1maxLength 128

Name of the index.


fieldsArray <Field>minItems 1maxItems 3

Fields for which the index is defined.

Max: 3 fields (for a unique index: 1 field)


statusstringRead-only

Current status of the index.


failureFailureRead-only

Contains details about the reasons for failure when status is FAILED.


uniqueboolean

Whether the index enforces uniqueness of values in the field for which it is defined. If true, the index can have only one field.

Default: false


caseInsensitiveboolean

Whether the index ignores case.

Default: false

Did this help?