Search Results for

    Show / Hide Table of Contents

    Class FieldIndexingInfo

    Indexing information for a field of a schema

    Inheritance
    object
    FieldIndexingInfo
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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

    Boost

    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
    double

    Id

    The field ID.

    Declaration
    [JsonProperty("id", Required = Required.Always)]
    [Required]
    public string Id { get; set; }
    Property Value
    string

    Index

    Field is stored for filtering.

    Declaration
    [JsonProperty("index", Required = Required.Always)]
    public bool Index { get; set; }
    Property Value
    bool

    RelatedSchemaIndexing

    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
    SchemaIndexingInfo

    SimpleSearch

    Field is stored for simple search.

    Declaration
    [JsonProperty("simpleSearch", Required = Required.Always)]
    public bool SimpleSearch { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static FieldIndexingInfo FromJson(string data)
    Parameters
    string data

    Returns
    FieldIndexingInfo

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX