IDocumentPathProvider
Provides a property to get a documents path or base URI.
using Newtonsoft.Json;
using System.Runtime.CompilerServices;
namespace NJsonSchema
{
[System.Runtime.CompilerServices.NullableContext(2)]
public interface IDocumentPathProvider
{
[JsonIgnore]
string DocumentPath { get; set; }
}
}