ISchemaProcessor
The schema processor interface.
using System.Threading.Tasks;
namespace NJsonSchema.Generation
{
public interface ISchemaProcessor
{
Task ProcessAsync(SchemaProcessorContext context);
}
}