Skip to content

Commit 452a988

Browse files
committed
Fixed casing and https
1 parent 06e9df2 commit 452a988

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

versions/3.0.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3011,7 +3011,7 @@ Field Name | Type | Validity | Description
30113011
<a name="securitySchemeScheme"></a>scheme | `string` | `http` | **Required.** The name of the HTTP Authorization scheme to be used in the Authorization header as per [RFC 7235](https://tools.ietf.org/html/rfc7235).
30123012
<a name="securitySchemeBearerFormat"></a>bearerFormat | `string` | `http` (`"bearer"`) | A hint to the client to identify how the bearer token is formatted. Bearer tokens are usually generated by an authorization server, so this information is primarily for documentation purposes.
30133013
<a name="securitySchemeFlow"></a>flow | [OAuth Flows Object](#oauthFlowsObject) | `oauth2` | **Required.** An object containing configuration information for the flow types supported.
3014-
<a name="securitySchemeOpenIdConnectUrl"></a>openIdConnectUrl | `string` | `openIdConnect` | **Required.** OpenId Connect URL to discover OAuth2 configuration values. Url may be relative to ___location of OpenAPI document.
3014+
<a name="securitySchemeOpenIdConnectUrl"></a>openIdConnectUrl | `string` | `openIdConnect` | **Required.** OpenId Connect URL to discover OAuth2 configuration values. URL may be relative to ___location of OpenAPI document.
30153015

30163016
This object can be extended with [Specification Extensions](#specificationExtensions).
30173017

@@ -3070,7 +3070,7 @@ bearerFormat: JWT
30703070
"type": "oauth2",
30713071
"flow": {
30723072
"implicit": {
3073-
"authorizationUrl": "http://swagger.io/api/oauth/dialog",
3073+
"authorizationUrl": "https://swagger.io/api/oauth/dialog",
30743074
"scopes": {
30753075
"write:pets": "modify pets in your account",
30763076
"read:pets": "read your pets"
@@ -3084,7 +3084,7 @@ bearerFormat: JWT
30843084
type: oauth2
30853085
flow:
30863086
implicit:
3087-
authorizationUrl: http://swagger.io/api/oauth/dialog
3087+
authorizationUrl: https://swagger.io/api/oauth/dialog
30883088
scopes:
30893089
write:pets: modify pets in your account
30903090
read:pets: read your pets
@@ -3125,15 +3125,15 @@ This object can be extended with [Specification Extensions](#specificationExtens
31253125
"type": "oauth2",
31263126
"flow": {
31273127
"implicit": {
3128-
"authorizationUrl": "http://swagger.io/api/oauth/dialog",
3128+
"authorizationUrl": "https://swagger.io/api/oauth/dialog",
31293129
"scopes": {
31303130
"write:pets": "modify pets in your account",
31313131
"read:pets": "read your pets"
31323132
}
31333133
},
31343134
"authorizationCode": {
3135-
"authorizationUrl": "http://swagger.io/api/oauth/dialog",
3136-
"tokenUrl": "http://swagger.io/api/oauth/token",
3135+
"authorizationUrl": "https://swagger.io/api/oauth/dialog",
3136+
"tokenUrl": "https://swagger.io/api/oauth/token",
31373137
"scopes": {
31383138
"write:pets": "modify pets in your account",
31393139
"read:pets": "read your pets"
@@ -3147,13 +3147,13 @@ This object can be extended with [Specification Extensions](#specificationExtens
31473147
type: oauth2
31483148
flow:
31493149
implicit:
3150-
authorizationUrl: http://swagger.io/api/oauth/dialog
3150+
authorizationUrl: https://swagger.io/api/oauth/dialog
31513151
scopes:
31523152
write:pets: modify pets in your account
31533153
read:pets: read your pets
31543154
authorizationCode:
3155-
authorizationUrl: http://swagger.io/api/oauth/dialog
3156-
tokenUrl: http://swagger.io/api/oauth/token
3155+
authorizationUrl: https://swagger.io/api/oauth/dialog
3156+
tokenUrl: https://swagger.io/api/oauth/token
31573157
scopes:
31583158
write:pets: modify pets in your account
31593159
read:pets: read your pets

0 commit comments

Comments
 (0)