Microsoft.OpenApi
2.0.0-preview.13
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.OpenApi --version 2.0.0-preview.13
NuGet\Install-Package Microsoft.OpenApi -Version 2.0.0-preview.13
<PackageReference Include="Microsoft.OpenApi" Version="2.0.0-preview.13" />
<PackageVersion Include="Microsoft.OpenApi" Version="2.0.0-preview.13" />
<PackageReference Include="Microsoft.OpenApi" />
paket add Microsoft.OpenApi --version 2.0.0-preview.13
#r "nuget: Microsoft.OpenApi, 2.0.0-preview.13"
#addin nuget:?package=Microsoft.OpenApi&version=2.0.0-preview.13&prerelease
#tool nuget:?package=Microsoft.OpenApi&version=2.0.0-preview.13&prerelease
OpenAPI.NET
Package | Nuget |
---|---|
Models and Writers | |
Readers | |
Hidi |
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: <a href="https://www.openapis.org">OpenAPI Initiative</a>
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
- Install core Nuget package Microsoft.OpenApi
- Install readers Nuget package Microsoft.OpenApi.Readers
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<HttpMethod, OpenApiOperation>
{
[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 httpClient = new HttpClient
{
BaseAddress = new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/")
};
var stream = await httpClient.GetStreamAsync("main/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:
-
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:
- Clone the repo locally by running this command:
git clone https://github.com/microsoft/OpenAPI.NET.git
- Open the solution file
(.sln)
in the root of the project with Visual Studio - Navigate to the
src/Microsoft.OpenApi.Workbench
directory and set it as the startup project - Run the project and you'll see a GUI pop up resembling the one below:
- 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.
- Clone the repo locally by running this command:
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Text.Json (>= 8.0.5)
-
net8.0
- System.Text.Json (>= 8.0.5)
NuGet packages (295)
Showing the top 5 NuGet packages that depend on Microsoft.OpenApi:
Package | Downloads |
---|---|
Swashbuckle.AspNetCore.Swagger
Middleware to expose Swagger JSON endpoints from APIs built on ASP.NET Core |
|
Swashbuckle.AspNetCore.Filters
Some additional useful filters for Swashbuckle.AspNetCore. This package replaces Swashbuckle.AspNetCore.Examples. |
|
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/763b4ef31ca4df6dae07c7ee8f39ea259b6980fa |
|
Microsoft.OpenApi.Readers
OpenAPI.NET Readers for JSON and YAML documents |
|
Microsoft.Azure.WebJobs.Extensions.OpenApi.Core
This package helps render OpenAPI document and Swagger UI of Azure Functions endpoints through the in-process worker. |
GitHub repositories (45)
Showing the top 20 popular GitHub repositories that depend on Microsoft.OpenApi:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
|
|
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
|
|
domaindrivendev/Swashbuckle.AspNetCore
Swagger tools for documenting API's built on ASP.NET Core
|
|
AssetRipper/AssetRipper
GUI Application to work with engine assets, asset bundles, and serialized files
|
|
microsoft/kiota
OpenAPI based HTTP Client code generator
|
|
fanliang11/surging
Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. support Event-based Asynchronous Pattern and reactive programming ,The service engine supports http, TCP, WS,Grpc, Thrift,Mqtt, UDP, and DNS protocols. It uses ZooKeeper and Consul as a registry, and integrates it. Hash, random, polling, Fair Polling as a load balancing algorithm, built-in service governance to ensure reliable RPC communication, the engine contains Diagnostic, link tracking for protocol and middleware calls, and integration SkyWalking Distributed APM
|
|
davidfowl/TodoApp
Todo application with ASP.NET Core Blazor WASM, Minimal APIs and Authentication
|
|
microsoft/dotnet-podcasts
.NET reference application shown at .NET Conf featuring ASP.NET Core, Blazor, .NET MAUI, Microservices, Orleans, Playwright, and more!
|
|
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
|
|
CoreUnion/CoreShop
基于 Asp.Net Core 8.0、Uni-App开发,支持可视化布局的小程序商城系统,前后端分离,支持分布式部署,跨平台运行,拥有分销、代理、团购、拼团、秒杀、直播、优惠券、自定义表单等众多营销功能,拥有完整SKU、下单、售后、物流流程。支持一套代码编译发布微信小程序版、H5版、Android版、iOS版、支付宝小程序版、字节跳动小程序版、QQ小程序版等共10个平台。
|
|
aspnet/AspLabs
Repo for ASP.NET experiments that are not ready for a production release
|
|
OfficeDev/Microsoft-Teams-Samples
Welcome to the Microsoft Teams samples repository. Here you will find task-focused samples in C#, JavaScript and TypeScript to help you get started with the Microsoft Teams App!
|
|
Azure/data-api-builder
Data API builder provides modern REST and GraphQL endpoints to your Azure Databases and on-prem stores.
|
|
jenius-apps/nightingale-rest-api-client
A modern, resource-efficient REST API client for Windows
|
|
MUnique/OpenMU
This project aims to create an easy to use, extendable and customizable server for a MMORPG called "MU Online".
|
|
microsoftgraph/msgraph-sdk-powershell
Powershell SDK for Microsoft Graph
|
|
dotnet/arcade
Tools that provide common build infrastructure for multiple .NET Foundation projects.
|
|
DamianEdwards/MinimalApiPlayground
A place I'm trying out the new ASP.NET Core minimal APIs features.
|
Version | Downloads | Last updated | |
---|---|---|---|
2.0.0-preview9 | 4,386 | 2 months ago | |
2.0.0-preview8 | 712 | 2 months ago | |
2.0.0-preview7 | 3,398 | 2 months ago | |
2.0.0-preview6 | 2,636 | 2 months ago | |
2.0.0-preview5 | 4,304 | 3 months ago | |
2.0.0-preview4 | 2,402 | 4 months ago | |
2.0.0-preview3 | 479 | 4 months ago | |
2.0.0-preview2 | 2,539 | 5 months ago | |
2.0.0-preview10 | 248 | a month ago | |
2.0.0-preview1 | 758 | 5 months ago | |
2.0.0-preview.16 | 4,103 | 20 days ago | |
2.0.0-preview.15 | 352 | 21 days ago | |
2.0.0-preview.14 | 317 | 22 days ago | |
2.0.0-preview.13 | 140 | a month ago | |
2.0.0-preview.12 | 3,540 | a month ago | |
2.0.0-preview.11 | 573 | a month ago | |
1.6.24 | 29,125 | 8 days ago | |
1.6.23 | 1,977,818 | 4 months ago | |
1.6.22 | 23,315,189 | 6 months ago | |
1.6.21 | 676,665 | 7 months ago | |
1.6.18 | 463,371 | 8 months ago | |
1.6.17 | 5,540,861 | 8 months ago | |
1.6.16 | 283,380 | 8 months ago | |
1.6.15 | 974,062 | 10 months ago | |
1.6.14 | 65,924,513 | 3/6/2024 | |
1.6.13 | 1,763,497 | 1/29/2024 | |
1.6.12 | 620,379 | 1/16/2024 | |
1.6.11 | 2,678,412 | 11/22/2023 | |
1.6.10 | 999,260 | 10/30/2023 | |
1.6.9 | 865,871 | 9/26/2023 | |
1.6.8 | 373,245 | 9/7/2023 | |
1.6.7 | 131,847 | 9/1/2023 | |
1.6.6 | 1,705,850 | 7/24/2023 | |
1.6.5 | 892,081 | 6/19/2023 | |
1.6.4 | 1,134,142 | 5/4/2023 | |
1.6.4-preview4 | 20,329 | 4/17/2023 | |
1.6.4-preview3 | 1,806 | 4/12/2023 | |
1.6.4-preview2 | 10,922 | 4/11/2023 | |
1.6.4-preview1 | 19,433 | 3/30/2023 | |
1.6.3 | 1,805,369 | 3/7/2023 | |
1.6.2 | 521,489 | 2/21/2023 | |
1.6.1 | 256,176 | 2/13/2023 | |
1.6.0 | 374,150 | 1/31/2023 | |
1.5.0 | 339,354 | 1/17/2023 | |
1.4.5 | 2,940,713 | 12/6/2022 | |
1.4.4 | 509,771 | 11/21/2022 | |
1.4.4-preview1 | 17,827 | 10/6/2022 | |
1.4.3 | 50,899,292 | 9/26/2022 | |
1.4.2 | 503,194 | 9/12/2022 | |
1.4.1 | 109,700 | 9/7/2022 | |
1.4.0 | 287,958 | 9/2/2022 | |
1.4.0-preview3 | 1,669 | 9/2/2022 | |
1.4.0-preview2 | 16,288 | 8/15/2022 | |
1.4.0-preview1 | 7,086 | 8/1/2022 | |
1.3.2 | 2,500,518 | 6/23/2022 | |
1.3.1 | 35,226,527 | 4/13/2022 | |
1.3.1-preview6 | 2,248 | 4/10/2022 | |
1.3.1-preview5 | 15,979 | 3/3/2022 | |
1.3.1-preview4 | 26,524 | 2/8/2022 | |
1.3.1-preview3 | 1,985 | 2/3/2022 | |
1.3.1-preview2 | 6,383 | 1/23/2022 | |
1.3.1-preview | 28,175 | 11/25/2021 | |
1.3.0-preview | 295,176 | 5/25/2021 | |
1.2.3 | 513,685,701 | 8/29/2020 | |
1.2.2 | 10,513,436 | 6/25/2020 | |
1.2.1 | 3,192 | 6/24/2020 | |
1.2.0 | 43,234 | 6/14/2020 | |
1.2.0-preview.3 | 17,536 | 4/2/2020 | |
1.2.0-preview.2 | 4,439 | 3/9/2020 | |
1.2.0-preview | 5,740 | 1/20/2020 | |
1.1.4 | 91,654,052 | 9/15/2019 | |
1.1.3 | 1,977,402 | 4/19/2019 | |
1.1.2 | 1,332,514 | 12/13/2018 | |
1.1.1 | 13,100,169 | 10/24/2018 | |
1.1.0 | 87,001 | 8/16/2018 | |
1.1.0-preview.4 | 1,604 | 7/18/2018 | |
1.1.0-preview.3 | 6,219 | 6/14/2018 | |
1.1.0-preview.2 | 1,180 | 6/7/2018 | |
1.1.0-preview.1 | 1,139 | 5/25/2018 | |
1.0.1 | 19,108 | 5/25/2018 | |
1.0.0 | 47,210 | 5/8/2018 | |
1.0.0-beta017 | 2,818 | 5/2/2018 | |
1.0.0-beta016 | 3,614 | 4/8/2018 | |
1.0.0-beta015 | 3,154 | 3/21/2018 | |
1.0.0-beta014 | 5,823 | 2/13/2018 | |
1.0.0-beta013 | 2,688 | 1/31/2018 | |
1.0.0-beta012 | 3,202 | 1/24/2018 | |
1.0.0-beta011 | 3,038 | 1/16/2018 | |
1.0.0-beta010 | 2,709 | 1/11/2018 | |
1.0.0-beta009 | 3,005 | 12/20/2017 | |
1.0.0-beta008 | 2,891 | 12/14/2017 |