Microsoft.OpenApi 1.6.11

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.

Build Status

master
Build status

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 or use the OpenAPI.NET Slack channel which you can join by registering for the HTTP APIs team at http://slack.httpapis.com.

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
7,039
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
1,734
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
1,147
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
836
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
758
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
267
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
25
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
23
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
23
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
22
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
21
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
21
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core
20
Swashbuckle.AspNetCore.SwaggerGen
Swagger Generator for API's built on ASP.NET Core
20
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
20
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from API's built on ASP.NET Core
19

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

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
1.6.22 4 10/04/2024
1.6.21 4 09/06/2024
1.6.19 5 08/30/2024
1.6.18 6 08/26/2024
1.6.17 6 08/07/2024
1.6.16 7 08/02/2024
1.6.15 6 07/04/2024
1.6.14 10 03/19/2024
1.6.13 10 02/08/2024
1.6.12 8 01/29/2024
1.6.11 10 12/29/2023
1.6.10 9 11/23/2023
1.6.9 13 11/24/2023
1.6.8 14 11/23/2023
1.6.7 14 10/06/2023
1.6.6 18 10/07/2023
1.6.5 14 09/09/2023
1.6.4 22 06/05/2023
1.6.4-preview4 18 06/05/2023
1.6.4-preview3 14 06/05/2023
1.6.4-preview2 18 06/05/2023
1.6.4-preview1 19 06/05/2023
1.6.3 16 06/05/2023
1.6.2 14 06/05/2023
1.6.1 22 06/05/2023
1.6.0 13 06/05/2023
1.5.0 15 06/05/2023
1.4.5 15 06/05/2023
1.4.4 16 06/05/2023
1.4.4-preview1 18 06/05/2023
1.4.3 16 06/05/2023
1.4.2 16 06/05/2023
1.4.1 14 06/05/2023
1.4.0 15 06/05/2023
1.4.0-preview3 14 06/05/2023
1.4.0-preview2 20 06/05/2023
1.4.0-preview1 14 06/05/2023
1.3.2 14 06/05/2023
1.3.1 15 06/05/2023
1.3.1-preview6 15 06/05/2023
1.3.1-preview5 11 06/05/2023
1.3.1-preview4 15 06/05/2023
1.3.1-preview3 14 06/05/2023
1.3.1-preview2 12 06/05/2023
1.3.1-preview 13 06/05/2023
1.3.0-preview 15 06/05/2023
1.2.3 4,619 12/16/2020
1.2.2 17 06/05/2023
1.2.1 21 06/05/2023
1.2.0 14 06/05/2023
1.2.0-preview.3 21 06/05/2023
1.2.0-preview.2 17 06/05/2023
1.2.0-preview 16 06/05/2023
1.1.4 7,034 12/16/2020
1.1.3 17 06/05/2023
1.1.2 16 06/05/2023
1.1.1 21 04/14/2021
1.1.0 18 06/05/2023
1.1.0-preview.4 15 06/05/2023
1.1.0-preview.3 17 06/05/2023
1.1.0-preview.2 18 06/05/2023
1.1.0-preview.1 15 06/05/2023
1.0.1 18 06/05/2023
1.0.0 15 06/05/2023
1.0.0-beta017 15 06/05/2023
1.0.0-beta016 13 06/05/2023
1.0.0-beta015 17 06/05/2023
1.0.0-beta014 15 06/05/2023
1.0.0-beta013 15 06/05/2023
1.0.0-beta012 17 06/05/2023
1.0.0-beta011 18 06/05/2023
1.0.0-beta010 17 06/05/2023
1.0.0-beta009 15 06/05/2023
1.0.0-beta008 15 06/05/2023