Microsoft.OpenApi 3.9.0

Category overview screenshot

OpenAPI.NET

Package Nuget
Models and Writers nuget
YamlReader nuget
Hidi nuget

The OpenAPI.NET SDK contains a useful object model for OpenAPI documents in .NET along with common serializers to extract raw OpenAPI JSON and YAML documents from the model.

See more information on the OpenAPI specification and its history here: OpenAPI Initiative

Project Objectives:

  • Provide a single shared object model in .NET for OpenAPI descriptions.
  • Include the most primitive Reader for ingesting OpenAPI JSON and YAML documents in both V2 and V3 formats.
  • Provide OpenAPI description writers for both V2 and V3 specification formats.
  • Enable developers to create Readers that translate different data formats into OpenAPI descriptions.

Installation

Note: we just released a new major version of the library, which brings support for OpenAPI 3.2! You can read more about the changes of this upcoming version in the upgrade guide.

Processors

The OpenAPI.NET project holds the base object model for representing OpenAPI documents as .NET objects. Some developers have found the need to write processors that convert other data formats into this OpenAPI.NET object model. We'd like to curate that list of processors in this section of the readme.

The base JSON and YAML processors are built into this project. Below is the list of the other supported processor projects.

  • C# Comment / Annotation Processor : Converts standard .NET annotations ( /// comments ) emitted from your build (MSBuild.exe) into OpenAPI.NET document object.

  • OData CSDL Processor : Converts the XML representation of the Entity Data Model (EDM) describing an OData Service into OpenAPI.NET document object.

Example Usage

Creating an OpenAPI Document

var document = new OpenApiDocument
{
    Info = new OpenApiInfo
    {
        Version = "1.0.0",
        Title = "Swagger Petstore (Simple)",
    },
    Servers = new List<OpenApiServer>
    {
        new OpenApiServer { Url = "http://petstore.swagger.io/api" }
    },
    Paths = new OpenApiPaths
    {
        ["/pets"] = new OpenApiPathItem
        {
            Operations = new()
            {
                [HttpMethod.Get] = new OpenApiOperation
                {
                    Description = "Returns all pets from the system that the user has access to",
                    Responses = new OpenApiResponses
                    {
                        ["200"] = new OpenApiResponse
                        {
                            Description = "OK"
                        }
                    }
                }
            }
        }
    }
};

Reading and writing an OpenAPI description

var (openApiDocument, _) = await OpenApiDocument.LoadAsync("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/refs/heads/main/_archive_/schemas/v3.0/pass/petstore.yaml");

// Write V2 as JSON
var outputString = await openApiDocument.SerializeAsJsonAsync(OpenApiSpecVersion.OpenApi2_0);

Validating/Testing OpenAPI descriptions

In order to test the validity of an OpenApi document, we avail the following tools:

  • Microsoft.OpenApi.Hidi

    A commandline tool for validating and transforming OpenAPI descriptions. Installation guidelines and documentation

  • Microsoft.OpenApi.Workbench

    A workbench tool consisting of a GUI where you can test and convert OpenAPI descriptions in both JSON and YAML from v2-->v3 and vice versa.

    Installation guidelines:

    1. Clone the repo locally by running this command: git clone https://github.com/microsoft/OpenAPI.NET.git
    2. Open the solution file (.slnx) in the root of the project with Visual Studio
    3. Navigate to the src/Microsoft.OpenApi.Workbench directory and set it as the startup project
    4. Run the project and you'll see a GUI pop up resembling the one below:

    workbench preview

    1. Copy and paste your OpenAPI descriptions in the Input Content window or paste the path to the descriptions file in the Input File textbox and click on Convert to render the results.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

To provide feedback and ask questions you can use Stack Overflow with the OpenAPI.NET tag.

Showing the top 20 packages that depend on Microsoft.OpenApi.

Packages Downloads
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
44
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
41
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/568fff703254def7dcd35fda9892bf702d4c81d3
40
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/dotnet/tree/44525024595742ebe09023abe709df51de65009b
40
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
40
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
38
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/159901324421e89ca7612465fc8c138609837f3d
38
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/277e317dd5cab9859ceea4c8ebae218522c2c173
37
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/6254f5ca64f85b90327592dff67ea6b2ec0262c6
37
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
36
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/4442a188f9200a57635373dcd640893c0e8dcc78
35
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8899cb30120d41413065f1b1465cdabefe0a1f9c
35
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b8139c5ee58f1708b0e3368a1b241400edd6cbc4
35
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
35
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/dotnet/tree/c2435c3e0f46de784341ac3ed62863ce77e117b4
35
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/3f1acb59718cadf111a0a796681e3d3509bb3381
34
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
34
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8e941eb42f819adb116b881195158b3887a70a1c
34
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/dotnet/tree/a612c2a1056fe3265387ae3ff7c94eba1505caf9
34
Microsoft.AspNetCore.OpenApi
Provides APIs for annotating route handler endpoints in ASP.NET Core with OpenAPI annotations. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/324a351f7f1ae6c17b6a8661903e2a7921a7d75c
34

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
3.9.0 4 07/15/2026
3.8.0 6 07/06/2026
3.7.0 12 06/12/2026
3.6.0 16 06/02/2026
3.5.5 13 05/30/2026
3.5.4 12 05/26/2026
3.5.3 35 04/27/2026
3.5.2 30 04/16/2026
3.5.1 37 04/01/2026
3.5.0 37 03/22/2026
3.4.0 42 03/06/2026
3.3.1 38 01/23/2026
3.3.0 38 01/23/2026
3.2.0 39 01/20/2026
3.1.3 45 01/16/2026
3.1.2 41 01/07/2026
3.1.1 46 12/19/2025
3.0.3 43 12/18/2025
3.0.2 45 12/10/2025
3.0.1 37 12/21/2025
3.0.0 34 12/20/2025
2.11.0 2 07/15/2026
2.10.0 11 07/06/2026
2.9.0 13 06/12/2026
2.8.0 11 06/02/2026
2.7.6 15 05/30/2026
2.7.5 17 05/26/2026
2.7.4 25 04/27/2026
2.7.3 34 04/16/2026
2.7.2 31 04/01/2026
2.7.1 34 03/22/2026
2.7.0 38 03/06/2026
2.6.1 36 01/23/2026
2.6.0 44 01/23/2026
2.5.0 41 01/20/2026
2.4.3 34 01/16/2026
2.4.2 37 01/07/2026
2.4.1 50 12/18/2025
2.4.0 40 12/19/2025
2.3.12 40 12/19/2025
2.3.11 45 12/10/2025
2.3.10 37 12/26/2025
2.3.9 34 12/14/2025
2.3.8 42 12/20/2025
2.3.7 38 12/20/2025
2.3.6 43 12/20/2025
2.3.5 36 12/18/2025
2.3.4 37 12/10/2025
2.3.3 36 12/15/2025
2.3.2 41 01/06/2026
2.3.1 44 12/20/2025
2.3.0 43 12/14/2025
2.2.0 40 12/10/2025
2.1.0 36 12/20/2025
2.0.1 36 12/16/2025
2.0.0 34 12/25/2025
2.0.0-preview9 25 12/17/2025
2.0.0-preview8 27 01/02/2026
2.0.0-preview7 33 01/06/2026
2.0.0-preview6 34 12/14/2025
2.0.0-preview5 36 12/19/2025
2.0.0-preview4 33 01/12/2026
2.0.0-preview3 32 12/25/2025
2.0.0-preview2 31 12/14/2025
2.0.0-preview10 30 01/01/2026
2.0.0-preview1 21 12/12/2025
2.0.0-preview.31 30 12/31/2025
2.0.0-preview.30 36 12/20/2025
2.0.0-preview.29 30 12/16/2025
2.0.0-preview.28 28 12/15/2025
2.0.0-preview.27 40 12/09/2025
2.0.0-preview.26 42 12/20/2025
2.0.0-preview.25 31 12/20/2025
2.0.0-preview.23 39 12/20/2025
2.0.0-preview.22 37 12/20/2025
2.0.0-preview.21 32 12/20/2025
2.0.0-preview.20 32 12/20/2025
2.0.0-preview.19 39 12/12/2025
2.0.0-preview.18 23 12/18/2025
2.0.0-preview.17 33 12/20/2025
2.0.0-preview.16 31 12/15/2025
2.0.0-preview.15 35 12/16/2025
2.0.0-preview.14 21 12/20/2025
2.0.0-preview.13 37 12/17/2025
2.0.0-preview.12 35 12/20/2025
2.0.0-preview.11 28 12/11/2025
1.6.29 34 04/16/2026
1.6.28 39 12/09/2025
1.6.27 35 12/13/2025
1.6.26 40 12/24/2025
1.6.25 39 12/24/2025
1.6.24 28 01/12/2026
1.6.23 33 12/11/2025
1.6.22 29 01/01/2026
1.6.21 29 12/16/2025
1.6.19 24 12/14/2025
1.6.18 21 12/14/2025
1.6.17 26 01/02/2026
1.6.16 25 12/30/2025
1.6.15 35 12/18/2025
1.6.14 34 12/22/2025
1.6.13 32 01/03/2026
1.6.12 31 01/02/2026
1.6.11 28 12/21/2025
1.6.10 31 01/02/2026
1.6.9 30 12/20/2025
1.6.8 25 12/13/2025
1.6.7 23 12/20/2025
1.6.6 36 12/16/2025
1.6.5 35 12/20/2025
1.6.4 28 12/17/2025
1.6.4-preview4 35 12/09/2025
1.6.4-preview3 29 12/20/2025
1.6.4-preview2 26 12/13/2025
1.6.4-preview1 30 12/20/2025
1.6.3 34 12/20/2025
1.6.2 22 12/20/2025
1.6.1 21 12/20/2025
1.6.0 18 12/20/2025
1.5.0 21 12/10/2025
1.4.5 31 12/15/2025
1.4.4 30 12/20/2025
1.4.4-preview1 32 12/11/2025
1.4.3 30 12/11/2025
1.4.2 28 12/14/2025
1.4.1 25 12/20/2025
1.4.0 19 12/13/2025
1.4.0-preview3 34 12/20/2025
1.4.0-preview2 32 12/20/2025
1.4.0-preview1 26 12/19/2025
1.3.2 25 12/20/2025
1.3.1 28 12/11/2025
1.3.1-preview6 30 12/19/2025
1.3.1-preview5 33 12/20/2025
1.3.1-preview4 28 12/11/2025
1.3.1-preview3 35 12/09/2025
1.3.1-preview2 30 12/13/2025
1.3.1-preview 26 01/01/2026
1.3.0-preview 31 12/13/2025
1.2.3 24 12/11/2025
1.2.2 31 12/15/2025
1.2.1 21 12/20/2025
1.2.0 32 12/20/2025
1.2.0-preview.3 26 12/16/2025
1.2.0-preview.2 22 12/12/2025
1.2.0-preview 33 12/10/2025
1.1.4 30 12/11/2025
1.1.3 26 12/14/2025
1.1.2 25 12/20/2025
1.1.1 24 12/20/2025
1.1.0 29 12/19/2025
1.1.0-preview.4 30 12/10/2025
1.1.0-preview.3 30 12/19/2025
1.1.0-preview.2 26 12/12/2025
1.1.0-preview.1 27 12/12/2025
1.0.1 29 12/16/2025
1.0.0 21 12/15/2025
1.0.0-beta017 21 12/20/2025
1.0.0-beta016 37 12/11/2025
1.0.0-beta015 35 12/13/2025
1.0.0-beta014 23 12/20/2025
1.0.0-beta013 35 12/18/2025
1.0.0-beta012 26 12/16/2025
1.0.0-beta011 27 12/10/2025
1.0.0-beta010 34 12/20/2025
1.0.0-beta009 22 12/17/2025
1.0.0-beta008 29 12/17/2025