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 API's built on ASP.NET Core
150
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
178
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
149
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
150
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
152
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
154
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
155
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
157
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
160
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
173
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
177
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
185
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
223
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
289
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
294
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
466
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
167

https://github.com/microsoft/OpenAPI.NET/releases

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
3.9.0 3 07/16/2026
3.8.0 11 07/07/2026
3.7.0 16 06/11/2026
3.6.0 16 06/03/2026
3.5.5 20 05/30/2026
3.5.4 23 05/28/2026
3.5.3 38 04/27/2026
3.5.2 33 04/15/2026
3.5.1 39 03/31/2026
3.5.0 41 03/20/2026
3.4.0 42 03/06/2026
3.3.1 56 01/23/2026
3.3.0 50 01/21/2026
3.2.0 53 01/20/2026
3.1.3 51 01/17/2026
3.1.2 50 01/06/2026
3.1.1 55 12/18/2025
3.0.3 68 12/17/2025
3.0.2 58 12/09/2025
3.0.1 94 11/18/2025
3.0.0 86 11/12/2025
2.11.0 4 07/16/2026
2.10.0 12 07/07/2026
2.9.0 14 06/11/2026
2.8.0 19 06/03/2026
2.7.6 14 05/30/2026
2.7.5 21 05/28/2026
2.7.4 28 04/27/2026
2.7.3 32 04/15/2026
2.7.2 32 04/01/2026
2.7.1 38 03/20/2026
2.7.0 43 03/06/2026
2.6.1 37 01/23/2026
2.6.0 50 01/21/2026
2.5.0 46 01/20/2026
2.4.3 49 01/16/2026
2.4.2 48 01/06/2026
2.4.1 68 12/18/2025
2.4.0 56 12/18/2025
2.3.12 51 12/17/2025
2.3.11 66 12/09/2025
2.3.10 96 11/18/2025
2.3.9 104 11/07/2025
2.3.8 92 10/28/2025
2.3.7 117 10/24/2025
2.3.6 124 10/21/2025
2.3.5 117 10/15/2025
2.3.4 94 10/07/2025
2.3.3 110 10/03/2025
2.3.2 112 09/20/2025
2.3.1 99 09/08/2025
2.3.0 100 08/30/2025
2.2.0 96 08/26/2025
2.1.0 114 08/20/2025
2.0.1 113 08/19/2025
2.0.0 164 07/12/2025
2.0.0-preview9 137 03/30/2025
2.0.0-preview8 127 03/30/2025
2.0.0-preview7 136 03/30/2025
2.0.0-preview6 116 03/30/2025
2.0.0-preview5 133 03/30/2025
2.0.0-preview4 137 12/28/2024
2.0.0-preview3 147 12/20/2024
2.0.0-preview2 136 11/15/2024
2.0.0-preview10 117 03/30/2025
2.0.0-preview1 97 11/07/2024
2.0.0-preview.31 89 07/05/2025
2.0.0-preview.30 89 07/04/2025
2.0.0-preview.29 97 06/20/2025
2.0.0-preview.28 112 06/18/2025
2.0.0-preview.27 112 06/16/2025
2.0.0-preview.26 100 06/15/2025
2.0.0-preview.25 131 06/12/2025
2.0.0-preview.23 101 06/04/2025
2.0.0-preview.22 112 06/04/2025
2.0.0-preview.21 136 05/23/2025
2.0.0-preview.20 118 05/22/2025
2.0.0-preview.19 101 05/18/2025
2.0.0-preview.18 130 05/15/2025
2.0.0-preview.17 124 04/17/2025
2.0.0-preview.16 111 03/31/2025
2.0.0-preview.15 120 03/31/2025
2.0.0-preview.14 130 03/31/2025
2.0.0-preview.13 116 03/31/2025
2.0.0-preview.12 137 03/31/2025
2.0.0-preview.11 128 03/31/2025
1.6.29 30 04/15/2026
1.6.28 127 10/07/2025
1.6.27 97 10/03/2025
1.6.26 115 09/23/2025
1.6.25 94 08/23/2025
1.6.24 125 04/05/2025
1.6.23 138 12/20/2024
1.6.22 157 10/02/2024
1.6.21 110 10/20/2024
1.6.18 149 10/20/2024
1.6.17 129 08/18/2024
1.6.16 112 08/20/2024
1.6.15 145 07/19/2024
1.6.14 189 06/27/2024
1.6.13 132 07/19/2024
1.6.12 134 07/19/2024
1.6.11 135 07/19/2024
1.6.10 132 07/19/2024
1.6.9 141 07/19/2024
1.6.8 149 07/19/2024
1.6.7 138 07/19/2024
1.6.6 131 07/19/2024
1.6.5 124 07/19/2024
1.6.4 149 07/19/2024
1.6.4-preview4 136 07/19/2024
1.6.4-preview3 149 07/19/2024
1.6.4-preview2 135 07/19/2024
1.6.4-preview1 137 07/19/2024
1.6.3 145 07/19/2024
1.6.2 147 07/19/2024
1.6.1 144 07/19/2024
1.6.0 142 07/19/2024
1.5.0 132 07/19/2024
1.4.5 133 07/19/2024
1.4.4 143 07/19/2024
1.4.4-preview1 176 07/19/2024
1.4.3 134 07/19/2024
1.4.2 140 07/19/2024
1.4.1 129 07/19/2024
1.4.0 147 07/19/2024
1.4.0-preview3 128 07/19/2024
1.4.0-preview2 131 07/19/2024
1.4.0-preview1 143 07/19/2024
1.3.2 131 07/19/2024
1.3.1 140 07/19/2024
1.3.1-preview6 142 07/19/2024
1.3.1-preview5 136 07/19/2024
1.3.1-preview4 137 07/19/2024
1.3.1-preview3 139 07/19/2024
1.3.1-preview2 134 07/19/2024
1.3.1-preview 131 07/19/2024
1.3.0-preview 132 07/19/2024
1.2.3 279 02/04/2024
1.2.2 133 07/19/2024
1.2.1 125 07/19/2024
1.2.0 136 07/19/2024
1.2.0-preview.3 138 07/19/2024
1.2.0-preview.2 146 07/19/2024
1.2.0-preview 144 07/19/2024
1.1.4 122 07/19/2024
1.1.3 138 07/19/2024
1.1.2 151 07/19/2024
1.1.1 131 07/19/2024
1.1.0 137 07/19/2024
1.1.0-preview.4 164 07/19/2024
1.1.0-preview.3 134 07/19/2024
1.1.0-preview.2 128 07/19/2024
1.1.0-preview.1 146 07/19/2024
1.0.1 133 07/19/2024
1.0.0 136 07/19/2024
1.0.0-beta017 139 07/19/2024
1.0.0-beta016 127 07/19/2024
1.0.0-beta015 152 07/19/2024
1.0.0-beta014 134 07/19/2024
1.0.0-beta013 132 07/19/2024
1.0.0-beta012 130 07/19/2024
1.0.0-beta011 149 07/19/2024
1.0.0-beta010 142 07/19/2024
1.0.0-beta009 139 07/19/2024
1.0.0-beta008 146 07/19/2024