Class FieldOverwriteBase
Base class to overwrite field's information
Inheritance
FieldOverwriteBase
Namespace: System.Dynamic.ExpandoObject
Syntax
[JsonConverter(typeof(JsonInheritanceConverter), new object[] { "kind" })]
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public abstract class FieldOverwriteBase
Properties
The field's ID whose information need to be overwritten.
Declaration
[JsonProperty("id", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
Enable the overwriting of the Required property of the field specified by the Id property.
Declaration
[JsonProperty("overwriteRequired", Required = Required.Always)]
public bool OverwriteRequired { get; set; }
Property Value
Defines if a field value is mandatory or not: this value will overwrite the existing Required value specified in the parent schema if
OverwriteRequired is set to true.
Declaration
[JsonProperty("required", Required = Required.Always)]
public bool Required { get; set; }
Property Value
Methods
Declaration
public static FieldOverwriteBase FromJson(string data)
Parameters
Returns