Das gleiche Schemaid wird bereits für die Typ -Swagger verwendet
services.ConfigureSwaggerGen(options =>
{
//your custom configuration goes here
// UseFullTypeNameInSchemaIds replacement for .NET Core
options.CustomSchemaIds(x => x.FullName);
});
Attractive Addax