Package version:

Interface PhoneticTokenFilter

Create tokens for phonetic matches. This token filter is implemented using Apache Lucene.

interface PhoneticTokenFilter {
    encoder?: PhoneticEncoder;
    name: string;
    odatatype: "#Microsoft.Azure.Search.PhoneticTokenFilter";
    replaceOriginalTokens?: boolean;
}

Hierarchy (view full)

Properties

encoder?: PhoneticEncoder

The phonetic encoder to use. Default is "metaphone".

name: string

The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters.

odatatype

Polymorphic discriminator, which specifies the different types this object can be

replaceOriginalTokens?: boolean

A value indicating whether encoded tokens should replace original tokens. If false, encoded tokens are added as synonyms. Default is true.