Class SchemaFieldSpec.NumericIndexingSpecData
Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric
fields. Setting the numericIndexingSpec
allows range queries to be supported.
Inherited Members
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class SchemaFieldSpec.NumericIndexingSpecData
Properties
MaxValue
Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
Declaration
[JsonProperty("maxValue")]
public virtual double? MaxValue { get; set; }
Property Value
Type | Description |
---|---|
double? |
MinValue
Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
Declaration
[JsonProperty("minValue")]
public virtual double? MinValue { get; set; }
Property Value
Type | Description |
---|---|
double? |