Microsoft.OpenApi 1.6.27

Category overview screenshot

OpenAPI.NET

Package Nuget
Models and Writers nuget
Readers 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

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 Dictionary<OperationType, OpenApiOperation>
            {
                [OperationType.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 httpClient = new HttpClient
{
    BaseAddress = new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/")
};

var stream = await httpClient.GetStreamAsync("master/examples/v3.0/petstore.yaml");

// Read V3 as YAML
var openApiDocument = new OpenApiStreamReader().Read(stream, out var diagnostic);

// Write V2 as JSON
var outputString = openApiDocument.Serialize(OpenApiSpecVersion.OpenApi2_0, OpenApiFormat.Json);

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:
    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
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/febee99db845fd8766a13bdb391a07c3ee90b4ba
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/954f61dd38b33caa2b736c73530bd5a294174437
22
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/70048beee894074e9718206a0017d9b080ee66ff
20
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/cccab50fba1c7335fdb48a735246374b5ddd7e69
19
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/da7e9894ce22ef8cc02e5acc56e95a6f8cf8f644
19
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/0a715692d8e2536c899faa0bb4f0cec2c2e33e36
17
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/25ef4aa38b77974263cb10f6e9cbd10135f17b59
17
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/8486d31e24f30e3fa1809a95699a0adc16f448d7
16
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/8ad057426fa6a27cd648b05684afddab9d97d3d9
13
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
12
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
12
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/63d1187a01b82719c2891cecc74ee3d51ce892a8
12
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
12
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/280c613963a1768b810d09f32c998fe4490855e9
11
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/7c810658463f35c39c54d5fb8a8dbbfd463bf747
11
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
11
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
10
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
10
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/fe4f0d09305ca73aa19976b4521e5c4e223b080e
10
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/2f1db20456007c9515068a35a65afdf99af70bc6
10

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

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
3.0.2 1 12/10/2025
3.0.1 1 11/19/2025
3.0.0 1 11/13/2025
2.3.11 1 12/10/2025
2.3.10 0 11/17/2025
2.3.9 2 11/9/2025
2.3.8 2 10/29/2025
2.3.7 2 10/26/2025
2.3.6 2 10/22/2025
2.3.5 2 10/16/2025
2.3.4 2 10/8/2025
2.3.3 3 10/4/2025
2.3.2 3 9/23/2025
2.3.1 4 9/10/2025
2.3.0 5 9/1/2025
2.2.0 5 8/27/2025
2.1.0 6 8/22/2025
2.0.1 6 8/20/2025
2.0.0 6 7/15/2025
2.0.0-preview9 4 6/14/2025
2.0.0-preview8 3 6/15/2025
2.0.0-preview7 5 6/16/2025
2.0.0-preview6 3 6/16/2025
2.0.0-preview5 4 6/15/2025
2.0.0-preview4 5 6/15/2025
2.0.0-preview3 2 6/16/2025
2.0.0-preview2 2 6/15/2025
2.0.0-preview10 3 6/15/2025
2.0.0-preview1 4 6/7/2025
2.0.0-preview.31 5 7/5/2025
2.0.0-preview.30 6 7/4/2025
2.0.0-preview.29 6 6/22/2025
2.0.0-preview.28 2 6/17/2025
2.0.0-preview.27 3 6/15/2025
2.0.0-preview.26 3 6/15/2025
2.0.0-preview.25 3 6/12/2025
2.0.0-preview.23 4 6/6/2025
2.0.0-preview.22 3 6/6/2025
2.0.0-preview.21 3 6/6/2025
2.0.0-preview.20 3 6/6/2025
2.0.0-preview.19 4 6/6/2025
2.0.0-preview.18 4 6/6/2025
2.0.0-preview.17 2 6/18/2025
2.0.0-preview.16 5 6/13/2025
2.0.0-preview.15 2 6/7/2025
2.0.0-preview.14 3 6/7/2025
2.0.0-preview.13 4 6/7/2025
2.0.0-preview.12 8 6/23/2025
2.0.0-preview.11 3 6/7/2025
1.6.28 2 10/8/2025
1.6.27 3 10/4/2025
1.6.26 3 9/24/2025
1.6.25 5 8/25/2025
1.6.24 3 6/15/2025
1.6.23 4 6/16/2025
1.6.22 3 6/16/2025
1.6.21 3 6/16/2025
1.6.18 3 6/16/2025
1.6.17 3 6/15/2025
1.6.16 3 6/15/2025
1.6.15 4 6/15/2025
1.6.14 3 6/6/2025
1.6.13 2 6/15/2025
1.6.12 2 6/14/2025
1.6.11 3 6/15/2025
1.6.10 4 6/16/2025
1.6.9 4 6/15/2025
1.6.8 9 6/10/2025
1.6.7 8 6/10/2025
1.6.6 9 6/10/2025
1.6.5 9 6/10/2025
1.6.4 9 6/11/2025
1.6.4-preview4 9 6/11/2025
1.6.4-preview3 8 6/11/2025
1.6.4-preview2 10 6/11/2025
1.6.4-preview1 7 6/11/2025
1.6.3 8 6/11/2025
1.6.2 8 6/10/2025
1.6.1 9 6/11/2025
1.6.0 10 6/10/2025
1.5.0 7 6/11/2025
1.4.5 8 6/11/2025
1.4.4 9 6/11/2025
1.4.4-preview1 9 6/11/2025
1.4.3 10 6/10/2025
1.4.2 8 6/10/2025
1.4.1 9 6/11/2025
1.4.0 9 6/10/2025
1.4.0-preview3 8 6/11/2025
1.4.0-preview2 10 6/11/2025
1.4.0-preview1 8 6/10/2025
1.3.2 9 6/10/2025
1.3.1 10 6/10/2025
1.3.1-preview6 10 6/11/2025
1.3.1-preview5 10 6/11/2025
1.3.1-preview4 9 6/11/2025
1.3.1-preview3 8 6/10/2025
1.3.1-preview2 8 6/11/2025
1.3.1-preview 9 6/10/2025
1.3.0-preview 7 6/10/2025
1.2.3 10 6/11/2025
1.2.2 9 6/11/2025
1.2.1 10 6/11/2025
1.2.0 8 6/11/2025
1.2.0-preview.3 10 6/13/2025
1.2.0-preview.2 9 6/13/2025
1.2.0-preview 12 6/10/2025
1.1.4 8 6/10/2025
1.1.3 9 6/10/2025
1.1.2 8 6/11/2025
1.1.1 8 6/10/2025
1.1.0 8 6/10/2025
1.1.0-preview.4 10 6/14/2025
1.1.0-preview.3 9 6/13/2025
1.1.0-preview.2 10 6/14/2025
1.1.0-preview.1 8 6/14/2025
1.0.1 9 6/10/2025
1.0.0 8 6/11/2025
1.0.0-beta017 9 6/10/2025
1.0.0-beta016 9 6/11/2025
1.0.0-beta015 10 6/10/2025
1.0.0-beta014 8 6/11/2025
1.0.0-beta013 9 6/10/2025
1.0.0-beta012 7 6/10/2025
1.0.0-beta011 8 6/21/2025
1.0.0-beta010 8 6/10/2025
1.0.0-beta009 8 6/10/2025
1.0.0-beta008 9 6/11/2025