We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f1230 commit 4150c48Copy full SHA for 4150c48
src/Microsoft.OpenApi/Models/OpenApiParameter.cs
@@ -291,7 +291,7 @@ public void SerializeAsV2WithoutReference(IOpenApiWriter writer)
291
{
292
writer.WriteProperty("collectionFormat", "pipes");
293
}
294
- else if (this.Style == ParameterStyle.PipeDelimited)
+ else if (this.Style == ParameterStyle.SpaceDelimited)
295
296
writer.WriteProperty("collectionFormat", "ssv");
297
src/Microsoft.OpenApi/Models/SecuritySchemeType.cs
@@ -29,6 +29,5 @@ public enum SecuritySchemeType
29
/// Use OAuth2 with OpenId Connect URL to discover OAuth2 configuration value.
30
/// </summary>
31
[Display("openIdConnect")] OpenIdConnect
32
-
33
34
0 commit comments