<PackageReference Include="NJsonSchema" Version="11.0.0-preview005" />

IDocumentPathProvider

public interface 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; } } }