IJsonReference
A JSON object which may reference other objects with $ref.
using Newtonsoft.Json;
using System.Runtime.CompilerServices;
namespace NJsonSchema.References
{
public interface IJsonReference : IJsonReferenceBase, IDocumentPathProvider
{
[System.Runtime.CompilerServices.Nullable(1)]
[JsonIgnore]
IJsonReference ActualObject {
[System.Runtime.CompilerServices.NullableContext(1)]
get;
}
[System.Runtime.CompilerServices.Nullable(2)]
[JsonIgnore]
object PossibleRoot {
[System.Runtime.CompilerServices.NullableContext(2)]
get;
}
}
}