MicroElements.OpenApi.FluentValidation
7.1.0
Prefix Reserved
See the version list below for details.
dotnet add package MicroElements.OpenApi.FluentValidation --version 7.1.0
NuGet\Install-Package MicroElements.OpenApi.FluentValidation -Version 7.1.0
<PackageReference Include="MicroElements.OpenApi.FluentValidation" Version="7.1.0" />
<PackageVersion Include="MicroElements.OpenApi.FluentValidation" Version="7.1.0" />
<PackageReference Include="MicroElements.OpenApi.FluentValidation" />
paket add MicroElements.OpenApi.FluentValidation --version 7.1.0
#r "nuget: MicroElements.OpenApi.FluentValidation, 7.1.0"
#:package MicroElements.OpenApi.FluentValidation@7.1.0
#addin nuget:?package=MicroElements.OpenApi.FluentValidation&version=7.1.0
#tool nuget:?package=MicroElements.OpenApi.FluentValidation&version=7.1.0
Package Description
| Product | Versions 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. |
-
net10.0
- FluentValidation (>= 12.0.0)
-
net8.0
- FluentValidation (>= 12.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.5)
- Microsoft.Extensions.Options (>= 9.0.5)
-
net9.0
- FluentValidation (>= 12.0.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on MicroElements.OpenApi.FluentValidation:
| Package | Downloads |
|---|---|
|
MicroElements.Swashbuckle.FluentValidation
Swagger ISchemaFilter that uses FluentValidation validators instead System.ComponentModel based attributes. |
|
|
MicroElements.NSwag.FluentValidation
Adds FluentValidation rules to swagger schema. |
|
|
X2031.MicroElements.NSwag.FluentValidation
Adds FluentValidation rules to swagger schema. |
|
|
MicroElements.AspNetCore.OpenApi.FluentValidation
Applies FluentValidation rules to OpenAPI schemas generated by Microsoft.AspNetCore.OpenApi (IOpenApiSchemaTransformer). |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.1.2 | 1,020 | 3/9/2026 |
| 7.1.1 | 267 | 3/9/2026 |
| 7.1.0 | 175 | 3/9/2026 |
| 7.1.0-beta.2 | 160 | 3/6/2026 |
| 7.1.0-beta.1 | 291 | 2/23/2026 |
| 7.0.6 | 5,265 | 3/3/2026 |
| 7.0.5 | 4,395 | 2/26/2026 |
| 7.0.4 | 16,045 | 2/17/2026 |
| 7.0.4-beta.3 | 57 | 2/14/2026 |
| 7.0.4-beta.2 | 50 | 2/14/2026 |
| 7.0.4-beta.1 | 57 | 2/14/2026 |
| 7.0.3 | 99,990 | 12/23/2025 |
| 7.0.2 | 626 | 12/23/2025 |
| 7.0.1 | 27,747 | 12/8/2025 |
| 6.1.1 | 516,006 | 9/2/2025 |
| 6.1.0 | 3,431,313 | 11/26/2024 |
| 6.0.0 | 5,871,312 | 12/3/2023 |
| 6.0.0-beta.3 | 324,412 | 2/19/2023 |
| 6.0.0-beta.1 | 345,836 | 7/23/2022 |
$# Changes in 7.1.0
- Added: New package `MicroElements.AspNetCore.OpenApi.FluentValidation` for Microsoft.AspNetCore.OpenApi support (Issue #149)
- Implements `IOpenApiSchemaTransformer` for .NET 9 and .NET 10
- Supports all FluentValidation rules: Required, NotEmpty, Length, Pattern, Email, Comparison, Between
- Handles AllOf/OneOf/AnyOf sub-schemas for polymorphic models
- No dependency on Swashbuckle
- User-facing API: `services.AddFluentValidationRulesToOpenApi()` + `options.AddFluentValidationRules()`
- .NET 10: full nested validator support via `GetOrCreateSchemaAsync`
- .NET 9: limited nested validator support (fallback to empty schema)
- Fixed: AspNetCore.OpenApi.FluentValidation support for .NET 10 (Issue #149, PR #192)
- Added: Sample project `SampleAspNetCoreOpenApi` demonstrating Microsoft.AspNetCore.OpenApi integration
- Added: ADR-001 documenting the architectural decision for AspNetCore.OpenApi support
# Changes in 7.1.0-beta.1
- Added: New package `MicroElements.AspNetCore.OpenApi.FluentValidation` for Microsoft.AspNetCore.OpenApi support (Issue #149)
- Implements `IOpenApiSchemaTransformer` for .NET 9 and .NET 10
- Supports all FluentValidation rules: Required, NotEmpty, Length, Pattern, Email, Comparison, Between
- Handles AllOf/OneOf/AnyOf sub-schemas for polymorphic models
- No dependency on Swashbuckle
- User-facing API: `services.AddFluentValidationRulesToOpenApi()` + `options.AddFluentValidationRules()`
- .NET 10: full nested validator support via `GetOrCreateSchemaAsync`
- .NET 9: limited nested validator support (fallback to empty schema)
- Added: Sample project `SampleAspNetCoreOpenApi` demonstrating Microsoft.AspNetCore.OpenApi integration
- Added: ADR-001 documenting the architectural decision for AspNetCore.OpenApi support
# Changes in 7.0.6
- Fixed: `[AsParameters]` validation rules not applied on .NET 8 Minimal APIs (Issue #180)
- On .NET 8, `ModelMetadata.ContainerType` is null for `[AsParameters]` decomposed parameters
- Added `AsParametersHelper` fallback that resolves the container type via `[AsParameters]` reflection on `MethodInfo`
- Applied fallback in both `FluentValidationOperationFilter` and `FluentValidationDocumentFilter`
- Zero regression on .NET 9/10 where `ContainerType` is already populated
# Changes in 7.0.5
- Added: `RemoveUnusedQuerySchemas` option (default: `true`) to control cleanup of
container type schemas for `[FromQuery]`/`[AsParameters]` types (Issue #180)
# Changes in 7.0.4
- Fixed: `[AsParameters]` types in minimal API and `[FromQuery]` container types create unused schemas in `components/schemas` (Issue #180)
- Added: Support for keyed DI services (Issue #165)
- Validators registered via `AddKeyedScoped`, `AddKeyedTransient`, `AddKeyedSingleton` are now discovered automatically
- Removed: Deprecated `FluentValidation.AspNetCore` package reference (Issue #164)
- Replaced with `FluentValidation.DependencyInjectionExtensions` 12.0.0
Full release notes can be found at: https://github.com/micro-elements/MicroElements.Swashbuckle.FluentValidation/blob/master/CHANGELOG.md