Class SchemaImportResult
Result information of a schema import operation
Inherited Members
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
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
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
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
TotalSchemaCount
Total number of schemas requested to be imported
Declaration
[JsonProperty("totalSchemaCount", Required = Required.Always)]
public int TotalSchemaCount { get; set; }