NEST by Elastic and contributors

<PackageReference Include="NEST" Version="5.4.0" />

.NET API 4,545,536 bytes

 FieldStatsField

public class FieldStatsField
public bool Aggregatable { get; }

public long Density { get; }

public long DocCount { get; }

public long MaxDoc { get; }

public string MaxValue { get; }

Returns the max value of a field. In NEST 5.x this is always returned as a string which does not work for geo_point and geo_shape typed fields which return an object here since Elasticsearch 5.3 so in 5.x this is always null for geo_point and geo_shape. Please use MaxValueAsString

public string MaxValueAsString { get; }

public string MinValue { get; }

Returns the min value of a field. In NEST 5.x this is always returned as a string which does not work for geo_point and geo_shape typed fields which return an object here since Elasticsearch 5.3 so in 5.x this is always null for geo_point and geo_shape. Please use MinValueAsString

public string MinValueAsString { get; }

public bool Searchable { get; }

public long SumDocumentFrequency { get; }

public long SumTotalTermFrequency { get; }

public FieldStatsField()