Microsoft.OpenApi 3.0.1

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 (.sln) 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
64
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
66
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
77
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
80
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
106
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
64
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
69
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
73
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
74
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
88
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
100
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
108
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
503
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
11,519
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
12,378
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
66
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
77
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
118

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

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
3.0.1 5 11/19/2025
3.0.0 6 11/12/2025
2.3.10 6 11/19/2025
2.3.9 6 11/08/2025
2.3.8 9 10/28/2025
2.3.7 10 10/25/2025
2.3.6 9 10/22/2025
2.3.5 7 10/20/2025
2.3.4 8 10/10/2025
2.3.3 12 10/04/2025
2.3.2 9 09/22/2025
2.3.1 10 09/22/2025
2.3.0 8 09/21/2025
2.2.0 8 09/21/2025
2.1.0 9 09/22/2025
2.0.1 8 09/22/2025
2.0.0 8 09/22/2025
2.0.0-preview9 18 02/24/2025
2.0.0-preview8 21 02/24/2025
2.0.0-preview7 17 02/08/2025
2.0.0-preview6 18 02/05/2025
2.0.0-preview5 35 01/23/2025
2.0.0-preview4 32 12/26/2024
2.0.0-preview3 32 12/22/2024
2.0.0-preview2 40 11/18/2024
2.0.0-preview10 23 02/28/2025
2.0.0-preview1 37 11/10/2024
2.0.0-preview.31 8 09/23/2025
2.0.0-preview.30 9 09/23/2025
2.0.0-preview.29 8 09/23/2025
2.0.0-preview.28 9 09/23/2025
2.0.0-preview.27 11 09/23/2025
2.0.0-preview.26 9 09/23/2025
2.0.0-preview.25 9 09/22/2025
2.0.0-preview.23 8 09/23/2025
2.0.0-preview.22 8 09/23/2025
2.0.0-preview.21 22 05/24/2025
2.0.0-preview.20 13 05/23/2025
2.0.0-preview.19 14 05/23/2025
2.0.0-preview.18 18 05/22/2025
2.0.0-preview.17 13 04/18/2025
2.0.0-preview.16 21 03/25/2025
2.0.0-preview.15 17 03/28/2025
2.0.0-preview.14 17 03/28/2025
2.0.0-preview.13 16 03/29/2025
2.0.0-preview.12 20 03/10/2025
2.0.0-preview.11 15 03/10/2025
1.6.28 12 10/10/2025
1.6.27 9 10/03/2025
1.6.26 9 09/28/2025
1.6.25 10 09/23/2025
1.6.24 18 04/03/2025
1.6.23 23 12/22/2024
1.6.22 24 10/02/2024
1.6.21 21 09/08/2024
1.6.19 38 09/02/2024
1.6.18 33 08/24/2024
1.6.17 30 08/07/2024
1.6.16 44 08/03/2024
1.6.15 26 06/20/2024
1.6.14 36 03/07/2024
1.6.13 43 03/06/2024
1.6.12 40 03/07/2024
1.6.11 34 11/29/2023
1.6.10 43 11/02/2023
1.6.9 38 10/04/2023
1.6.8 43 09/15/2023
1.6.7 43 09/07/2023
1.6.6 35 08/25/2023
1.6.5 32 06/23/2023
1.6.4 41 06/06/2023
1.6.4-preview4 37 06/06/2023
1.6.4-preview3 33 06/23/2023
1.6.4-preview2 41 06/23/2023
1.6.4-preview1 43 04/04/2023
1.6.3 39 04/04/2023
1.6.2 45 04/04/2023
1.6.1 43 04/04/2023
1.6.0 45 04/04/2023
1.5.0 30 04/04/2023
1.4.5 76 12/10/2022
1.4.4 33 01/15/2023
1.4.4-preview1 41 10/18/2022
1.4.3 35 10/18/2022
1.4.2 43 09/15/2022
1.4.1 39 09/09/2022
1.4.0 43 09/08/2022
1.4.0-preview3 36 09/23/2022
1.4.0-preview2 46 09/24/2022
1.4.0-preview1 44 09/22/2022
1.3.2 37 09/09/2022
1.3.1 53 09/10/2022
1.3.1-preview6 69 09/22/2022
1.3.1-preview5 42 09/21/2022
1.3.1-preview4 73 10/18/2022
1.3.1-preview3 43 09/26/2022
1.3.1-preview2 41 09/23/2022
1.3.1-preview 55 09/22/2022
1.3.0-preview 38 09/23/2022
1.2.3 23,937 06/27/2022
1.2.2 55 09/07/2022
1.2.1 52 09/10/2022
1.2.0 58 09/09/2022
1.2.0-preview.3 33 09/24/2022
1.2.0-preview.2 58 09/22/2022
1.2.0-preview 58 09/25/2022
1.1.4 65 09/09/2022
1.1.3 38 09/11/2022
1.1.2 49 09/08/2022
1.1.1 47 09/10/2022
1.1.0 55 09/10/2022
1.1.0-preview.4 43 09/22/2022
1.1.0-preview.3 45 09/21/2022
1.1.0-preview.2 50 09/22/2022
1.1.0-preview.1 64 09/22/2022
1.0.1 49 09/11/2022
1.0.0 47 09/09/2022
1.0.0-beta017 38 09/26/2022
1.0.0-beta016 41 09/23/2022
1.0.0-beta015 45 09/25/2022
1.0.0-beta014 31 09/21/2022
1.0.0-beta013 32 10/18/2022
1.0.0-beta012 37 09/24/2022
1.0.0-beta011 34 09/22/2022
1.0.0-beta010 43 09/23/2022
1.0.0-beta009 36 09/24/2022
1.0.0-beta008 48 09/23/2022