<PackageReference Include="NJsonSchema" Version="11.0.2" />

IJsonExtensionObject

public interface IJsonExtensionObject
The base JSON interface with extension data.
using System.Collections.Generic; using System.Runtime.CompilerServices; namespace NJsonSchema { public interface IJsonExtensionObject { [System.Runtime.CompilerServices.Nullable(new byte[] { 2, 1, 2 })] IDictionary<string, object> ExtensionData { [return: System.Runtime.CompilerServices.Nullable(new byte[] { 2, 1, 2 })] get; [param: System.Runtime.CompilerServices.Nullable(new byte[] { 2, 1, 2 })] set; } } }