Swashbuckle.AspNetCore icon indicating copy to clipboard operation
Swashbuckle.AspNetCore copied to clipboard

Swagger tools for documenting API's built on ASP.NET Core

Results 332 Swashbuckle.AspNetCore issues
Sort by recently updated
recently updated
newest added

The `JsonPolymorphicAttribute.TypeDiscriminatorPropertyName` is nullable. When it's not provided, System.Text.Json defaults to `"$type"` per the documentation: > Gets or sets a custom type discriminator property name for the polymorhic type. Uses...

help-wanted

### What are you wanting to achieve? I want to authenticate via Azure B2C to test out my endpoints. ### What code or approach do you have so far? Here...

help-wanted
question

### Describe the bug ![QQ_1732674503364](https://github.com/user-attachments/assets/3c28c2bf-4e84-4942-9f38-f0e52bd472ca) ![QQ_1732674543942](https://github.com/user-attachments/assets/60b85e6c-ef62-49a8-9e5a-1f30a0ead081) this is custom model binding ![QQ_1732674592312](https://github.com/user-attachments/assets/424b1d61-8e6d-4109-8a3f-0931a4e38384) This is a generic custom model binding ![QQ_1732674661280](https://github.com/user-attachments/assets/060a97d0-6b0e-4230-806a-f34f847a0aff) ![QQ_1732674684947](https://github.com/user-attachments/assets/d8f6b7e1-8e9c-4f24-87a9-de95dd9e8b14) There is no Request Body ### Expected behavior _No...

bug
help-wanted

### Problem The problematic line is this: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/e727e8d53cd9f7edebe5faa6b8bf183e19afb0c6/src/Swashbuckle.AspNetCore.SwaggerGen/SchemaGenerator/SchemaGenerator.cs#L416 This line properly generates subtype definitions but doesn't populate any of the `anyOf`/`oneOf` properties, resulting in a "broken" swagger document. Quoting the...

bug
help-wanted

we are using the latest version of swashbuckle. I have this class ``` public class ListModel { public ModelType Model { get; } = ModelType.List; public string ContinuationToken { get;...

help-wanted

Hello, Knowing that the migration to `System.Text.Json` disabled the serialization of fields by default, I tried to re-enable it. The "Web API" way : ```csharp builder.Services.Configure(options => { options.JsonSerializerOptions.IncludeFields =...

help-wanted

I am doubtful that if this existing issue (https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2413, https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/329) will be reopened, so here I open a new one. OneOf is now supported by open-api standard. I believe this...

help-wanted

I am using asp.net core 3.1 with swashbuckle 5. I am not able tofind the way for defining base url. RootUrl option seem to be not coming or (may be...

help-wanted

### Describe the bug When Content-Type is set to multipart/form-data; version=1.0 If you use a swagger request, the data will be requested in the data format of a JSON object....

bug
help-wanted

### Describe the bug No matter which naming policy is set in general JSON serializer options when using minimal APIs, Swashbuckle applies camel casing. It therefore does not comply with...

bug
help-wanted