ISchemaNameGenerator
The schema name generator.
using System;
using System.Runtime.CompilerServices;
namespace NJsonSchema.Generation
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface ISchemaNameGenerator
{
string Generate(Type type);
}
}