Search Results for

    Show / Hide Table of Contents

    Class SchemaImportResult

    Result information of a schema import operation

    Inheritance
    object
    SchemaImportResult
    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 SchemaImportResult

    Properties

    ImportedSchemaCount

    Number of schemas imported

    Declaration
    [JsonProperty("importedSchemaCount", Required = Required.Always)]
    public int ImportedSchemaCount { get; set; }
    Property Value
    int

    ImportedSchemaIds

    Ids of the schemas that were successfully imported

    Declaration
    [JsonProperty("importedSchemaIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> ImportedSchemaIds { get; set; }
    Property Value
    ICollection<string>

    SkippedSchemaCount

    Number of schema skipped during import phase because they were already found in the system

    Declaration
    [JsonProperty("skippedSchemaCount", Required = Required.Always)]
    public int SkippedSchemaCount { get; set; }
    Property Value
    int

    SkippedSchemaIds

    Ids of the schemas that were not imported because already found in the system

    Declaration
    [JsonProperty("skippedSchemaIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> SkippedSchemaIds { get; set; }
    Property Value
    ICollection<string>

    TotalSchemaCount

    Total number of schemas requested to be imported

    Declaration
    [JsonProperty("totalSchemaCount", Required = Required.Always)]
    public int TotalSchemaCount { get; set; }
    Property Value
    int

    Methods

    FromJson(string)

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

    Returns
    SchemaImportResult

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX