Microsoft.OpenApi.OData 1.6.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Microsoft.OpenApi.OData --version 1.6.1
NuGet\Install-Package Microsoft.OpenApi.OData -Version 1.6.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.OpenApi.OData" Version="1.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.OpenApi.OData --version 1.6.1
#r "nuget: Microsoft.OpenApi.OData, 1.6.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.OpenApi.OData as a Cake Addin
#addin nuget:?package=Microsoft.OpenApi.OData&version=1.6.1

// Install Microsoft.OpenApi.OData as a Cake Tool
#tool nuget:?package=Microsoft.OpenApi.OData&version=1.6.1

nuget

Convert OData to OpenAPI.NET

Introduction

The Microsoft.OpenAPI.OData.Reader library helps represent an OData service metadata as an OpenApi description. It converts OData CSDL, the XML representation of the Entity Data Model (EDM) describing an OData service into Open API based on OpenAPI.NET object model.

The conversion is based on the mapping doc from OASIS OData OpenAPI v1.0 and uses the following :

  1. Capabilities vocabulary annotation
  2. Authorization vocabulary annotation
  3. Core vocabulary annotation
  4. Navigation property path
  5. Edm operation and operation import path

Overview

The image below is generic overview of how this library can convert the EDM model to an OpenAPI.NET document object.

Convert OData CSDL to OpenAPI

For more information on the CSDL and Entity Data model, please refer to http://www.odata.org/documentation. For more information about the Open API object of model, please refer to http://github.com/microsoft/OpenAPI.NET

Sample code

The following sample code illustrates the use of the library

public static void GenerateOpenApiDescription()
{
    IEdmModel model = GetEdmModel();
    OpenApiDocument document = model.ConvertToOpenApi();
    var outputJSON = document.SerializeAsJson(OpenApiSpecVersion.OpenApi3_0);
    var outputYAML = document.SerializeAsYaml(OpenApiSpecVersion.OpenApi3_0);
}

public static IEdmModel GetEdmModel()
{
    // load EDM model here...
}

Or with the convert settings:

public static void GenerateOpenApiDescription()
{
    IEdmModel model = GetEdmModel();
    OpenApiConvertSettings settings = new OpenApiConvertSettings
    {
        // configuration
    };
    OpenApiDocument document = model.ConvertToOpenApi(settings);
    var outputJSON = document.SerializeAsJson(OpenApiSpecVersion.OpenApi3_0);
    var outputYAML = document.SerializeAsYaml(OpenApiSpecVersion.OpenApi3_0);
}

public static IEdmModel GetEdmModel()
{
    // load EDM model here...
}

The GetEdmModel() method can load a model in 3 ways:

  1. Create the Edm model from scratch. For details refer building a basic model

  2. Load the Edm model from CSDL file. The following shows a code sample that loads a model from a csdl file.

    public static IEdmModel GetEdmModel()
    {
        string csdlFilePath = @"c:\csdl.xml";
        string csdl = System.IO.File.ReadAllText(csdlFilePath);
        IEdmModel model = CsdlReader.Parse(XElement.Parse(csdl).CreateReader());
        return model;
    }
    
  3. Create the Edm model using Web API OData model builder. For details refer to the web api model builder article

Nuget packages

The OpenAPI.OData.reader nuget package is at: https://www.nuget.org/packages/Microsoft.OpenApi.OData/


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.

You can also open an issue directly on this repo via this link.

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.

Product 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 was computed.  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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Microsoft.OpenApi.OData:

Package Downloads
DT-ESA.Elevate.SecureConnectors

Generates DTO classes and provides wrappers for resource access.

Swashbuckle.AspNetCore.Community.OData

Provides support for Microsoft.AspNetCore.OData in Swashbuckle

DT-ESA.SecureConnectors

Generates DTO classes and provides wrappers for resource access.

Microsoft.Restier.AspNetCore.Swagger The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

ITP.Helpers

Helper library for ITP

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on Microsoft.OpenApi.OData:

Repository Stars
microsoft/OpenAPI.NET
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.
OData/RESTier
A turn-key library for building RESTful services
OData/AspNetCoreOData
ASP.NET Core OData: A server library built upon ODataLib and ASP.NET Core
unchase/Unchase.OpenAPI.Connectedservice
:scroll: Visual Studio extension to generate OpenAPI (Swagger) web service reference.
Version Downloads Last updated
1.6.1 3,523 3/28/2024
1.6.0 3,401 3/18/2024
1.6.0-preview.10 404 3/4/2024
1.6.0-preview.9 104 3/1/2024
1.6.0-preview.8 136 2/13/2024
1.6.0-preview.7 267 2/5/2024
1.6.0-preview.6 51 2/2/2024
1.6.0-preview.5 70 2/1/2024
1.6.0-preview.4 163 1/25/2024
1.6.0-preview.3 81 1/23/2024
1.6.0-preview.2 174 1/16/2024
1.6.0-preview.1 61 1/9/2024
1.5.0 27,532 12/8/2023
1.5.0-preview9 1,805 11/13/2023
1.5.0-preview8 397 11/6/2023
1.5.0-preview7 685 10/26/2023
1.5.0-preview6 203 10/24/2023
1.5.0-preview5 642 10/4/2023
1.5.0-preview4 1,005 9/5/2023
1.5.0-preview3 306 9/1/2023
1.5.0-preview2 918 6/14/2023
1.5.0-preview1 299 6/2/2023
1.4.0 100,157 5/3/2023
1.4.0-preview7 300 5/2/2023
1.4.0-preview6 325 4/27/2023
1.4.0-preview5 789 4/20/2023
1.4.0-preview4 256 4/18/2023
1.4.0-preview3 386 4/17/2023
1.4.0-preview2 831 4/13/2023
1.4.0-preview1 507 4/5/2023
1.3.0 10,461 3/29/2023
1.3.0-preview4 469 3/22/2023
1.3.0-preview3 396 3/21/2023
1.3.0-preview2 849 2/28/2023
1.3.0-preview1 352 2/1/2023
1.2.0 22,407 1/20/2023
1.2.0-preview9 2,251 12/15/2022
1.2.0-preview8 996 11/17/2022
1.2.0-preview7 436 11/8/2022
1.2.0-preview6 927 11/1/2022
1.2.0-preview5 476 10/24/2022
1.2.0-preview4 701 10/6/2022
1.2.0-preview3 320 10/3/2022
1.2.0-preview2 342 9/28/2022
1.2.0-preview1 320 9/28/2022
1.1.0 45,361 9/14/2022
1.0.11 25,207 7/18/2022
1.0.11-preview5 622 7/8/2022
1.0.11-preview4 529 7/6/2022
1.0.11-preview3 1,112 6/22/2022
1.0.11-preview2 733 6/6/2022
1.0.11-preview1 368 5/30/2022
1.0.10 14,260 5/10/2022
1.0.10-preview3 1,216 3/29/2022
1.0.10-preview2 1,126 3/3/2022
1.0.10-preview1 549 2/25/2022
1.0.9 66,934 10/7/2021
1.0.8 65,165 5/6/2021
1.0.7 13,218 4/13/2021
1.0.6 23,283 2/11/2021
1.0.5 1,145 2/6/2021
1.0.4 45,150 7/21/2020
1.0.2 7,617 5/25/2020
1.0.1 31,977 10/10/2019
1.0.0 1,712 9/25/2019
1.0.0-beta9 13,391 8/13/2019
1.0.0-beta8 2,877 8/6/2019
1.0.0-beta7 5,542 9/24/2018
1.0.0-beta6 1,009 9/19/2018
1.0.0-beta5 964 9/7/2018
1.0.0-beta4 1,312 5/30/2018

- Generates unique DELETE operation ids of $ref paths for indexed collection navigation properties #513