79109436

Date: 2024-10-21 09:36:51
Score: 0.5
Natty:
Report link

I you are using Swashbuckle you can customize it by providing a CustomSchemaIds:

services.AddSwaggerGen(options =>
{
  // ...
  options.CustomSchemaIds(type => "your convention here");
}

You can for example inspect the flag type.IsGenericType and decide what to return.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Giacomo De Liberali