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