Ta sama schemaid jest już używana do typu swagger
services.ConfigureSwaggerGen(options =>
{
//your custom configuration goes here
// UseFullTypeNameInSchemaIds replacement for .NET Core
options.CustomSchemaIds(x => x.FullName);
});
Attractive Addax