IJsonSchemaExtensionDataAttribute
Interface to add an extension data property to a class or property, implementation needs to inherit from System.Attribute.
namespace NJsonSchema.Annotations
{
public interface IJsonSchemaExtensionDataAttribute
{
string Key { get; }
object Value { get; }
}
}