FSharp.SystemTextJson.Swagger 0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package FSharp.SystemTextJson.Swagger --version 0.0.1
NuGet\Install-Package FSharp.SystemTextJson.Swagger -Version 0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FSharp.SystemTextJson.Swagger" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSharp.SystemTextJson.Swagger --version 0.0.1
#r "nuget: FSharp.SystemTextJson.Swagger, 0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FSharp.SystemTextJson.Swagger as a Cake Addin
#addin nuget:?package=FSharp.SystemTextJson.Swagger&version=0.0.1

// Install FSharp.SystemTextJson.Swagger as a Cake Tool
#tool nuget:?package=FSharp.SystemTextJson.Swagger&version=0.0.1

FSharp.SystemTextJson.Swagger

Swagger settings for FSharp.SystemTextJson. Still experimantal

Usage

Only replace AddSwaggerGen with AddSwaggerForSystemTextJson

let builder =  WebApplication.CreateBuilder(args)
let fsOptions = JsonFSharpOptions() // setup options here 
//setup usage of JsonFSharpConverter                
builder.Services.AddControllers()
                    .AddJsonOptions(fun opts ->
                        opts.JsonSerializerOptions.Converters.Add(JsonFSharpConverter(fsOptions))) 
// setup usage of SwaggerForSystemTextJson - use instead AddSwaggerGen 
builder.Services.AddSwaggerForSystemTextJson(fsOptions)
        
let app = builder.Build()
        
if (app.Environment.IsDevelopment()) then
      app.UseSwagger() |> ignore
      app.UseSwaggerUI() |> ignore

What works

Not everything is now implemented. Some things works with limitations

Records

  • Works
  • All properties are required except of Skippable
  • Option properties are set as nullable

Tuples

  • Works
  • Evaluates to array of composed type
  • Array has length limits to tuple length
  • Composed type is made as oneOf keyType and valueType
  • Warning - request generated by this schema could be invalid.

Collections

  • List and Set: works
  • Maps
    • with string keys - works
    • with boxed string - works
    • other - works
      • Evaluates to array of Tuples.
      • Warning - request generated by this schema could be invalid

Unions

  • Only partialy works only unwrapped options
  • Other in progress
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.2 781 11/14/2022
0.0.1 312 11/7/2022