ParameterStyleParsers.OpenAPI 0.1.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package ParameterStyleParsers.OpenAPI --version 0.1.1
NuGet\Install-Package ParameterStyleParsers.OpenAPI -Version 0.1.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="ParameterStyleParsers.OpenAPI" Version="0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ParameterStyleParsers.OpenAPI --version 0.1.1
#r "nuget: ParameterStyleParsers.OpenAPI, 0.1.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 ParameterStyleParsers.OpenAPI as a Cake Addin
#addin nuget:?package=ParameterStyleParsers.OpenAPI&version=0.1.1

// Install ParameterStyleParsers.OpenAPI as a Cake Tool
#tool nuget:?package=ParameterStyleParsers.OpenAPI&version=0.1.1

OpenAPI.ParameterStyleParsers

Parameter style parsers for OpenAPI 3.1.

The examples in the OpenAPI specification doesn't match RFC6570 fully, in those cases the examples in the specification are followed.

Continuous Delivery

Installation

dotnet add package ParameterStyleParsers.OpenAPI

https://www.nuget.org/packages/ParameterStyleParsers.OpenAPI/

Getting Started

Parse the OpenAPI 3.1 parameter from the specification, and create a parameter value parser.

/* Parameter specification example:
{
    "name": "color",
    "in": "query",
    "schema": {
        "type": "array",
        "items": {
            "type": "string"
        }
    },
    "style": "form",
    "explode": true
}
*/

var parameter = OpenAPI.ParameterStyleParsers.Parameter.Parse(
    name: "color",
    style: "form",
    location: "query",
    explode: true,
    JsonSchema.FromText("""
    {
        "type": "array",
        "items": {
            "type": "string"
    }
    """)
);
var parser = OpenAPI.ParameterStyleParsers.ParameterParsers.ParameterValueParser.Create(parameter);

Parse a style serialized parameter

string styleSerializedParameter = "color=blue&color=black&color=brown";
parser.TryParse(styleSerializedParameter, out JsonNode? parameter, out string? error);
Console.WriteLine(parameter.ToJsonString());
// ["blue","black","brown"]

Serialize json to a parameter style.

var json = JsonNode.Parse("""
    ["blue","black","brown"]
""");
string styleSerializedParameter = parser.Serialize(json);
Console.WriteLine(styleSerializedParameter);
// color=blue&color=black&color=brown

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.2-pre-277f96df 36 5/24/2024
0.1.1 42 5/22/2024
0.1.1-pre-02a920e8 37 5/22/2024
0.1.0 108 4/17/2024
0.1.0-pre-62b5499b 82 4/17/2024