From a8e7e1e1c7d91d3d86cb469732b6b169e29b392d Mon Sep 17 00:00:00 2001 From: Axel Nennker Date: Tue, 20 Feb 2024 00:00:23 +0100 Subject: [PATCH 1/2] add oauth2MetadataUrl RFC8114 Signed-off-by: Axel Nennker --- versions/3.0.4.md | 1 + 1 file changed, 1 insertion(+) diff --git a/versions/3.0.4.md b/versions/3.0.4.md index 065597492e..e57a097d6a 100644 --- a/versions/3.0.4.md +++ b/versions/3.0.4.md @@ -3210,6 +3210,7 @@ Field Name | Type | Applies To | Description 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. flows | [OAuth Flows Object](#oauthFlowsObject) | `oauth2` | **REQUIRED**. An object containing configuration information for the flow types supported. openIdConnectUrl | `string` | `openIdConnect` | **REQUIRED**. OpenId Connect URL to discover OAuth2 configuration values. This MUST be in the form of a URL. +oauth2MetadataUrl | `string` | `oauth2` | **OPTIONAL**. A HTTPS URL to discover OAuth2 configuration values. This must be in the form of a URL. See [RFC8414](https://datatracker.ietf.org/doc/html/rfc8414) This object MAY be extended with [Specification Extensions](#specificationExtensions). From 546b062e321cc05aba5e04eea1615ac0a14d5a75 Mon Sep 17 00:00:00 2001 From: Axel Nennker Date: Tue, 20 Feb 2024 00:05:20 +0100 Subject: [PATCH 2/2] fix typo Signed-off-by: Axel Nennker --- versions/3.0.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/3.0.4.md b/versions/3.0.4.md index e57a097d6a..9234e8bf98 100644 --- a/versions/3.0.4.md +++ b/versions/3.0.4.md @@ -3210,7 +3210,7 @@ Field Name | Type | Applies To | Description 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. flows | [OAuth Flows Object](#oauthFlowsObject) | `oauth2` | **REQUIRED**. An object containing configuration information for the flow types supported. openIdConnectUrl | `string` | `openIdConnect` | **REQUIRED**. OpenId Connect URL to discover OAuth2 configuration values. This MUST be in the form of a URL. -oauth2MetadataUrl | `string` | `oauth2` | **OPTIONAL**. A HTTPS URL to discover OAuth2 configuration values. This must be in the form of a URL. See [RFC8414](https://datatracker.ietf.org/doc/html/rfc8414) +oauth2MetadataUrl | `string` | `oauth2` | **OPTIONAL**. A HTTPS URL to discover OAuth2 configuration values. This must be in the form of a URL. See [RFC8414](https://datatracker.ietf.org/doc/html/rfc8414) This object MAY be extended with [Specification Extensions](#specificationExtensions).