Class FieldIndexingInfo
Indexing information for a field of a schema
Inheritance
FieldIndexingInfo
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class FieldIndexingInfo
Properties
Value to prioritize search results. Set to 1 by default. Ignored if SimpleSearch not set to true.
Declaration
[JsonProperty("boost", Required = Required.Always)]
public double Boost { get; set; }
Property Value
Declaration
[JsonProperty("id", Required = Required.Always)]
[Required]
public string Id { get; set; }
Property Value
Field is stored for filtering.
Declaration
[JsonProperty("index", Required = Required.Always)]
public bool Index { get; set; }
Property Value
Indexing information of schema's fields related to this field (if existing).
Declaration
[JsonProperty("relatedSchemaIndexing", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public SchemaIndexingInfo RelatedSchemaIndexing { get; set; }
Property Value
Field is stored for simple search.
Declaration
[JsonProperty("simpleSearch", Required = Required.Always)]
public bool SimpleSearch { get; set; }
Property Value
Methods
Declaration
public static FieldIndexingInfo FromJson(string data)
Parameters
Returns