IJsonReferenceBase
A JSON object which may reference other objects with $ref.
using Newtonsoft.Json;
namespace NJsonSchema.References
{
public interface IJsonReferenceBase
{
[JsonIgnore]
string DocumentPath { get; set; }
[JsonProperty("__referencePath", DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
string ReferencePath { get; set; }
[JsonIgnore]
IJsonReference Reference { get; set; }
}
}