-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
feature suggestionhelp-wantedA change up for grabs for contributions from the communityA change up for grabs for contributions from the community
Description
Is your feature request related to a specific problem? Or an existing feature?
Support for [Length]
was recently added in #2882. There are more Model State attributes in .NET 8 that Swashbuckle could potentially support:
ASP.NET | .NET Types | OpenAPI |
---|---|---|
[Base64String] |
string |
"format": "byte" |
[Range(..., MinimumIsExclusive = true, MaximumIsExclusive = true)] |
int , double , IComparable |
"exclusiveMinimum": true, "exclusiveMaximum": true |
[AllowedValues] |
any (uses object.Equals ) |
anyOf maybe? |
[DeniedValues] |
any (uses object.Equals ) |
pattern maybe? (tricky to get the escaping right) |
Describe the solution you'd like
Please take the entries in the table above into consideration.
Additional context
No response
Metadata
Metadata
Assignees
Labels
feature suggestionhelp-wantedA change up for grabs for contributions from the communityA change up for grabs for contributions from the community