Skip to content

Microsoft.AspNetCore.OpenApi

The Cratis.Arc.OpenApi package provides deep integration with Microsoft.AspNetCore.OpenApi (.NET 10+), adding schema and operation transformers for Arc conventions. Review the enum and model-bound response limitations below before treating generated schemas as a wire-contract guarantee. This is the ASP.NET host integration, not Core’s built-in lightweight OpenAPI.

TopicDescription
ConceptsHow concept types are mapped to their underlying primitive types in the API schema.
CommandsHow command responses are wrapped with CommandResult in the API documentation.
QueriesHow query responses are wrapped with QueryResult, including pagination parameters.
EnumsCurrent enum-name/schema-type mismatch and numeric wire behavior.
FromRequest AttributeHow complex model binding with [FromRequest] is reflected in the API schema.
Model-Bound OperationsHow minimal API command and query endpoints appear in the API documentation.

Add the Cratis.Arc.OpenApi NuGet package to your project and call AddConcepts() inside your AddOpenApi configuration:

These are configuration fragments for an existing ASP.NET Core Arc host. Import Cratis.Arc.OpenApi and Microsoft.Extensions.DependencyInjection, then register before builder.Build():

builder.Services.AddOpenApi(options => options.AddConcepts());

After building the app, map the document using ASP.NET’s app.MapOpenApi() (default /openapi/v1.json). Keep app.UseCratisArc() and the host’s normal startup too. Map only in intended environments or apply appropriate endpoint access controls; API documentation is not automatically private.

The AddConcepts() method registers all schema and operation transformers automatically.

The Cratis.Arc.OpenApi package targets .NET 10 and later. The transformer API (IOpenApiSchemaTransformer, IOpenApiOperationTransformer) and the underlying Microsoft.OpenApi 2.x schema types are only available from .NET 10 onwards.

Arc also ships a separate Cratis.Arc.Swagger package for Swashbuckle-based Swagger UI. Both packages cover the same set of Arc features, but use different APIs:

Cratis.Arc.SwaggerCratis.Arc.OpenApi
FrameworkSwashbuckle (ISchemaFilter, IOperationFilter)Microsoft.AspNetCore.OpenApi (IOpenApiSchemaTransformer, IOpenApiOperationTransformer)
HostASP.NET CoreASP.NET Core
Registrationservices.AddSwaggerGen(o => o.AddConcepts())services.AddOpenApi(o => o.AddConcepts())

Both are fully independent; choose the one that matches your toolchain.