ParameterStyleParsers.OpenAPI
0.1.1-pre-02a920e8
See the version list below for details.
dotnet add package ParameterStyleParsers.OpenAPI --version 0.1.1-pre-02a920e8
NuGet\Install-Package ParameterStyleParsers.OpenAPI -Version 0.1.1-pre-02a920e8
<PackageReference Include="ParameterStyleParsers.OpenAPI" Version="0.1.1-pre-02a920e8" />
paket add ParameterStyleParsers.OpenAPI --version 0.1.1-pre-02a920e8
#r "nuget: ParameterStyleParsers.OpenAPI, 0.1.1-pre-02a920e8"
// Install ParameterStyleParsers.OpenAPI as a Cake Addin #addin nuget:?package=ParameterStyleParsers.OpenAPI&version=0.1.1-pre-02a920e8&prerelease // Install ParameterStyleParsers.OpenAPI as a Cake Tool #tool nuget:?package=ParameterStyleParsers.OpenAPI&version=0.1.1-pre-02a920e8&prerelease
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
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
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
- JsonSchema.Net (>= 5.0.0 && < 6.0.0)
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 | 121 | 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 |
## [v0.1.1-pre-02a920e8](https://github.com/Fresa/OpenAPI.ParameterStyleParsers/compare/485471531ec43ea525b1e51e62cb740d2819e325...02a920e85d6afea534c3b13880d5dddd0ab4268a) (2024-05-22)