Class FieldExistsResponse
Response for a query if a field exists
Inheritance
FieldExistsResponse
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class FieldExistsResponse
Properties
Indicates if a field with the specified ID currently exists.
Declaration
[JsonProperty("exists", Required = Required.Always)]
public bool Exists { get; set; }
Property Value
Indicates if a field with the specified ID was previously used.
A field ID that was previously in use cannot be used again.
Declaration
[JsonProperty("previouslyUsed", Required = Required.Always)]
public bool PreviouslyUsed { get; set; }
Property Value
If the field does already exist or has already existed, this will contain the ID
of the schema containing it. It case of parent-child schemas, a field ID
has to be unique across the schema hierarchy.
Declaration
[JsonProperty("schemaId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string SchemaId { get; set; }
Property Value
Methods
Declaration
public static FieldExistsResponse FromJson(string data)
Parameters
Returns