In the ITokenCountProperty interface, the JsonProperty is missing from the Analyzer property.
before:
public interface ITokenCountProperty : INumberProperty{
string Analyzer { get; set; }
}
fix:
public interface ITokenCountProperty : INumberProperty
{
[JsonProperty("analyzer")]
string Analyzer { get; set; }
}