@@ -28,7 +28,7 @@ public class StringMapping : IElasticType, IElasticCoreType
2828 [ JsonProperty ( "analyzer" ) ]
2929 public string Analyzer { get ; set ; }
3030
31- [ JsonProperty ( "store" ) , JsonConverter ( typeof ( YesNoBoolConverter ) ) ]
31+ [ JsonProperty ( "store" ) ]
3232 public bool ? Store { get ; set ; }
3333
3434 [ JsonProperty ( "index" ) , JsonConverter ( typeof ( StringEnumConverter ) ) ]
@@ -43,6 +43,9 @@ public class StringMapping : IElasticType, IElasticCoreType
4343 [ JsonProperty ( "null_value" ) ]
4444 public string NullValue { get ; set ; }
4545
46+ [ JsonProperty ( "norms" ) ]
47+ public NormsMapping Norms { get ; set ; }
48+
4649 [ JsonProperty ( "omit_norms" ) ]
4750 public bool ? OmitNorms { get ; set ; }
4851
@@ -52,6 +55,9 @@ public class StringMapping : IElasticType, IElasticCoreType
5255 [ JsonProperty ( "index_analyzer" ) ]
5356 public string IndexAnalyzer { get ; set ; }
5457
58+ [ JsonProperty ( "ignore_above" ) ]
59+ public string IgnoreAbove { get ; set ; }
60+
5561 [ JsonProperty ( "search_analyzer" ) ]
5662 public string SearchAnalyzer { get ; set ; }
5763
0 commit comments