Class Occurrences
Occurrences of distinct values
Inherited Members
Namespace: Noxum.Nova.Index.Client
Assembly: Noxum.Nova.Index.Client.dll
Syntax
public class Occurrences
Properties
More
True, if there are more value occurrences. Currently limited by the 'page.take' parameter
Declaration
[JsonPropertyName("more")]
public bool More { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
NotNullOccurrences
The number of items that have a value
Declaration
[JsonPropertyName("notNullOccurrences")]
public int NotNullOccurrences { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
NullOccurrences
The number of items that do not have a value
Declaration
[JsonPropertyName("nullOccurrences")]
public int NullOccurrences { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ValueOccurrences
List of values and their occurrence counters. The list is sorted by value by default.
Declaration
[JsonPropertyName("valueOccurrences")]
public IList<Occurrence> ValueOccurrences { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Occurrence> |
ValueType
The type of the values ("string" | "number" | "boolean")
Declaration
[JsonPropertyName("valueType")]
public string ValueType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |