You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.NET 7 adds support for representing 128-bit integers via the Int128 and UInt128 types.
When provided as inputs for an API, the schema generator interprets the type as a string. When emitted as part of the response, the type is treated as an object.
We probably want to represent this type using the { "type": "integer" } schema type.
- Ensure `DateOnly` and `TimeOnly` with for Newtonsoft.Json.
- Add System.Text.Json support for `TimeSpan` and `Version`.
- Add Int128 and UInt128 support.
- Handle `AnnotationsDataType.Upload`.
- Create `AnnotationsDataType` mapping dictionary only once.
Resolvesdomaindrivendev#2611.
- Ensure `DateOnly` and `TimeOnly` with for Newtonsoft.Json.
- Add System.Text.Json support for `TimeSpan` and `Version`.
- Add Int128 and UInt128 support.
- Handle `AnnotationsDataType.Upload`.
- Create `AnnotationsDataType` mapping dictionary only once.
Resolvesdomaindrivendev#2611.
.NET 7 adds support for representing 128-bit integers via the Int128 and UInt128 types.
When provided as inputs for an API, the schema generator interprets the type as a string. When emitted as part of the response, the type is treated as an object.
We probably want to represent this type using the
{ "type": "integer" }
schema type.See dotnet/aspnetcore#43119 for more info.
The text was updated successfully, but these errors were encountered: