Type Alias SemanticTypeDictionary

A semantic type for words matching a value in the list of values

type SemanticTypeDictionary = {
    validationCriteria?: "EXACT_VALUE" | "IGNORE_CASE_AND_ACCENTS";
    values: string[];
}
Index
validationCriteria?: "EXACT_VALUE" | "IGNORE_CASE_AND_ACCENTS"

one of EXACT_VALUE / IGNORE_CASE_AND_ACCENTS, EXACT_VALUE: matches only the exact values in dictionary, IGNORE_CASE_AND_ACCENTS: case and accents are ignored

values: string[]