MicroElements.Swashbuckle.FluentValidation 7.0.4-beta.2

Prefix Reserved
This is a prerelease version of MicroElements.Swashbuckle.FluentValidation.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MicroElements.Swashbuckle.FluentValidation --version 7.0.4-beta.2
                    
NuGet\Install-Package MicroElements.Swashbuckle.FluentValidation -Version 7.0.4-beta.2
                    
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="MicroElements.Swashbuckle.FluentValidation" Version="7.0.4-beta.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MicroElements.Swashbuckle.FluentValidation" Version="7.0.4-beta.2" />
                    
Directory.Packages.props
<PackageReference Include="MicroElements.Swashbuckle.FluentValidation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MicroElements.Swashbuckle.FluentValidation --version 7.0.4-beta.2
                    
#r "nuget: MicroElements.Swashbuckle.FluentValidation, 7.0.4-beta.2"
                    
#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.
#:package MicroElements.Swashbuckle.FluentValidation@7.0.4-beta.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MicroElements.Swashbuckle.FluentValidation&version=7.0.4-beta.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MicroElements.Swashbuckle.FluentValidation&version=7.0.4-beta.2&prerelease
                    
Install as a Cake Tool

Swagger ISchemaFilter that uses FluentValidation validators instead System.ComponentModel based attributes.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (52)

Showing the top 5 NuGet packages that depend on MicroElements.Swashbuckle.FluentValidation:

Package Downloads
Reo.Core.Queue.RabbitMq

Package Description

Reo.Core.Email

Package Description

Mii.Rinjani.Gateway.Commons

Package Description

H21.AspNetCore.Validation

Package Description

WalletFramework.AspNetCore.Contracts

Api Library

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on MicroElements.Swashbuckle.FluentValidation:

Repository Stars
AlphaYu/adnc
A pragmatic .NET 8 framework for modular monoliths to evolve seamlessly into distributed microservices.
AntonioFalcaoJr/EventualShop
A state-of-the-art distributed system using Reactive DDD as uncertainty modeling, Event Storming as subdomain decomposition, Event Sourcing as an eventual persistence mechanism, CQRS, Async Projections, Microservices for individual deployable units, Event-driven Architecture for efficient integration, and Clean Architecture as domain-centric design
nhonvo/clean-architecture-net-8.0
Clean Architecture Web API Project
melikpehlivanov/AuctionSystem
Auction system written in ASP.NET Core
Version Downloads Last Updated
7.1.8 0 7/1/2026
7.1.8-beta.2 76 6/21/2026
7.1.8-beta.1 60 6/20/2026
7.1.7 14,147 6/20/2026
7.1.7-beta.3 85 6/17/2026
7.1.7-beta.2 70 6/17/2026
7.1.7-beta.1 71 6/15/2026
7.1.6 34,308 6/2/2026
7.1.6-beta.1 52 6/2/2026
7.1.5-beta.2 456 5/16/2026
7.1.5-beta 432 4/1/2026
7.1.4 263,535 3/29/2026
7.1.4-beta 148 3/24/2026
7.1.3 11,773 3/24/2026
7.1.2 68,809 3/9/2026
7.1.1 1,757 3/9/2026
7.1.0 1,686 3/9/2026
7.1.0-beta.2 76 3/6/2026
7.0.6 23,398 3/3/2026
7.0.4-beta.2 72 2/14/2026
Loading failed

$# Changes in 7.0.4-beta.2
- Added: Support for keyed DI services (Issue #165)
 - Validators registered via `AddKeyedScoped`, `AddKeyedTransient`, `AddKeyedSingleton` are now discovered automatically
 - Works with both `GetValidator` (OperationFilter/DocumentFilter) and `GetValidators` (SchemaFilter) paths
 - Registration order independent — keyed validators registered before or after `AddFluentValidationRulesToSwagger()` are discovered
 - Deduplication: same validator registered as both keyed and non-keyed is returned only once
 - Graceful fallback: no impact when keyed services are not used or DI container doesn't support `IKeyedServiceProvider`

# Changes in 7.0.4-beta.1
- Fixed: `[AsParameters]` types in minimal API and `[FromQuery]` container types create unused schemas in `components/schemas` (Issue #180)
 - `GetSchemaForType()` registers schemas in `SchemaRepository` as a side-effect of `GenerateSchema()`
 - Added check-and-cleanup: snapshot existing schema IDs before processing, remove side-effect schemas after applying validation rules to parameters
 - Fix applied to both default path (`FluentValidationOperationFilter`) and experimental path (`FluentValidationDocumentFilter`)

# Changes in 7.0.3
- Fixed: NullReferenceException when models contain nested object properties (Issue #176 extended)
 - Handle `OpenApiSchemaReference` for nested class properties in `OpenApiRuleContext`
 - Add safe `TryGetValue` check in `NSwagRuleContext`

# Changes in 7.0.2
- Fixed: InvalidCastException when models contain enum properties (Issue #176)
 - In Microsoft.OpenApi 2.x, enum properties are represented as `OpenApiSchemaReference` instead of `OpenApiSchema`
 - Filter out schema references in `GetProperties()` method to avoid cast exception

# Changes in 7.0.1
- Fixed: FluentValidation rules not applied to `[FromForm]` parameters (Issue #170)
 - Added `RequestBody` processing in `FluentValidationOperationFilter` for `multipart/form-data` and `application/x-www-form-urlencoded` content types


Full release notes can be found at: https://github.com/micro-elements/MicroElements.Swashbuckle.FluentValidation/blob/master/CHANGELOG.md