diff --git a/src/Nest/Domain/Analysis/TokenFilter/WordDelimiterTokenFilter.cs b/src/Nest/Domain/Analysis/TokenFilter/WordDelimiterTokenFilter.cs index e4b09de0fa8..28a19b87382 100644 --- a/src/Nest/Domain/Analysis/TokenFilter/WordDelimiterTokenFilter.cs +++ b/src/Nest/Domain/Analysis/TokenFilter/WordDelimiterTokenFilter.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Newtonsoft.Json; +using System; namespace Nest { @@ -47,9 +48,12 @@ public WordDelimiterTokenFilter() [JsonProperty("protected_words_path ")] public string ProtectedWordsPath { get; set; } - [JsonProperty("type_table")] + [Obsolete("Please switch to TypeTableList property", true)] public string TypeTable { get; set; } + [JsonProperty("type_table")] + public List TypeTableList { get; set; } + [JsonProperty("type_table_path")] public string TypeTablePath { get; set; } }