Interface for custom schema field definitions

interface CustomSchemaField {
    CASESENSITIVE?: true;
    NOINDEX?: boolean;
    NOSTEM?: true;
    SEPARATOR?: string;
    SORTABLE?: boolean | "UNF";
    WEIGHT?: number;
    required?: boolean;
    type: SchemaFieldTypes;
}

Properties

CASESENSITIVE?: true
NOINDEX?: boolean
NOSTEM?: true
SEPARATOR?: string
SORTABLE?: boolean | "UNF"
WEIGHT?: number
required?: boolean
type: SchemaFieldTypes