ParameterStyleParsers.OpenAPI
1.0.3
dotnet add package ParameterStyleParsers.OpenAPI --version 1.0.3
NuGet\Install-Package ParameterStyleParsers.OpenAPI -Version 1.0.3
<PackageReference Include="ParameterStyleParsers.OpenAPI" Version="1.0.3" />
paket add ParameterStyleParsers.OpenAPI --version 1.0.3
#r "nuget: ParameterStyleParsers.OpenAPI, 1.0.3"
// Install ParameterStyleParsers.OpenAPI as a Cake Addin #addin nuget:?package=ParameterStyleParsers.OpenAPI&version=1.0.3 // Install ParameterStyleParsers.OpenAPI as a Cake Tool #tool nuget:?package=ParameterStyleParsers.OpenAPI&version=1.0.3
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.
Installation
dotnet add package ParameterStyleParsers.OpenAPI
https://www.nuget.org/packages/ParameterStyleParsers.OpenAPI/
Getting Started
Create the parser by providing the OpenAPI 3.1 parameter specification.
var parser = OpenAPI.ParameterStyleParsers.ParameterParsers.ParameterValueParser.FromOpenApi31ParameterSpecification(
JsonNode.Parse("""
{
"name": "color",
"in": "query",
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"style": "form",
"explode": true
}
""")!.AsObject());
It's also possible to manually construct the parser.
var parameter = OpenAPI.ParameterStyleParsers.Parameter.Parse(
name: "color",
style: "form",
location: "query",
explode: true,
new JsonSchema202012(JsonNode.Parse("""
{
"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";
Console.WriteLine(
parser.TryParse(styleSerializedParameter, out JsonNode? json, out string? error)
? json?.ToJsonString()
: error);
// ["blue","black","brown"]
Serialize json to a parameter style.
var json = JsonNode.Parse("""
["blue","black","brown"]
""");
var styleSerializedParameter = parser.Serialize(json);
Console.WriteLine(styleSerializedParameter);
// color=blue&color=black&color=brown
Schema References
Json pointers represented as URI fragments are supported, other URI's are currently not. It is possible to bring your own Json Schema implementation though.
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
Product | Versions 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. |
-
net8.0
- No dependencies.
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 |
---|---|---|
1.0.3 | 98 | 6/7/2024 |
1.0.3-pre-5f844d02 | 90 | 6/7/2024 |
1.0.2 | 96 | 6/7/2024 |
1.0.2-pre-59512787 | 82 | 6/7/2024 |
1.0.1 | 119 | 6/4/2024 |
1.0.1-pre-974c1933 | 94 | 6/4/2024 |
1.0.0 | 93 | 5/29/2024 |
1.0.0-pre-fc3e8a7a | 97 | 5/29/2024 |
1.0.0-pre-72c5ba6d | 95 | 5/27/2024 |
1.0.0-pre-4465deeb | 98 | 5/28/2024 |
0.1.2-pre-277f96df | 96 | 5/24/2024 |
0.1.1 | 105 | 5/22/2024 |
0.1.1-pre-02a920e8 | 86 | 5/22/2024 |
0.1.0 | 137 | 4/17/2024 |
0.1.0-pre-62b5499b | 104 | 4/17/2024 |