Skip to content

Commit c9c0172

Browse files
authored
correct OpenAPI spec issues in api.yaml
1 parent b02fb3d commit c9c0172

1 file changed

Lines changed: 20 additions & 23 deletions

File tree

src/swagger/api.yaml

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -60328,6 +60328,8 @@ components:
6032860328
description: Specifies conditions that must be met during policy evaluation to apply the rule. All policy conditions and conditions for at least one rule must be met to apply the settings specified in the policy and the associated rule.
6032960329
type: object
6033060330
properties:
60331+
app:
60332+
$ref: '#/components/schemas/AppAndInstancePolicyRuleCondition'
6033160333
network:
6033260334
$ref: '#/components/schemas/PolicyNetworkCondition'
6033360335
people:
@@ -64847,9 +64849,13 @@ components:
6484764849
description: The list of geolocations to include or exclude for an Enhanced Dynamic Network Zone
6484864850
properties:
6484964851
include:
64852+
allOf:
6485064853
- $ref: '#/components/schemas/NetworkZoneLocationArray'
64854+
- description: An array of geolocations to include for an Enhanced Dynamic Network Zone
6485164855
exclude:
64856+
allOf:
6485264857
- $ref: '#/components/schemas/NetworkZoneLocationArray'
64858+
- description: An array of geolocations to exclude for an Enhanced Dynamic Network Zone
6485364859
ipServiceCategories:
6485464860
x-okta-lifecycle:
6485564861
lifecycle: GA
@@ -70088,6 +70094,11 @@ components:
7008870094
isGenerallyAvailable: true
7008970095
type: object
7009070096
properties:
70097+
alg:
70098+
type: string
70099+
description: Algorithm used in the key
70100+
example: RSA-OAEP
70101+
nullable: false
7009170102
e:
7009270103
type: string
7009370104
description: RSA key value (exponent) for key binding
@@ -70184,15 +70195,15 @@ components:
7018470195
nullable: false
7018570196
enum:
7018670197
- sig
70187-
discriminator:
70188-
propertyName: kty
70189-
mapping:
70190-
RSA: '#/components/schemas/OAuth2ClientJsonWebKeyRsaRequest'
70191-
EC: '#/components/schemas/OAuth2ClientJsonWebKeyECRequest'
70192-
required:
70193-
- kty
70194-
- alg
70195-
- use
70198+
discriminator:
70199+
propertyName: kty
70200+
mapping:
70201+
RSA: '#/components/schemas/OAuth2ClientJsonWebKeyRsaRequest'
70202+
EC: '#/components/schemas/OAuth2ClientJsonWebKeyECRequest'
70203+
required:
70204+
- kty
70205+
- alg
70206+
- use
7019670207
OAuth2ClientJsonSigningKeyResponse:
7019770208
title: Signing Key
7019870209
description: A [JSON Web Key (JWK)](https://tools.ietf.org/html/rfc7517) is a JSON representation of a cryptographic key. Okta uses signing keys to verify the signature of a JWT when provided for the `private_key_jwt` client authentication method or for a signed authorize request object. Okta supports both RSA and Elliptic Curve (EC) keys for signing tokens.
@@ -70270,13 +70281,6 @@ components:
7027070281
- $ref: '#/components/schemas/OAuth2ClientJsonSigningKeyRequest'
7027170282
- type: object
7027270283
properties:
70273-
kty:
70274-
type: string
70275-
description: Cryptographic algorithm family for the certificate's key pair
70276-
example: RSA
70277-
nullable: false
70278-
enum:
70279-
- EC
7028070284
x:
7028170285
type: string
7028270286
description: The public x coordinate for the elliptic curve point
@@ -70418,13 +70422,6 @@ components:
7041870422
description: RSA key value (exponent) for key binding
7041970423
example: AQAB
7042070424
nullable: false
70421-
kty:
70422-
type: string
70423-
description: Cryptographic algorithm family for the certificate's key pair
70424-
example: RSA
70425-
nullable: false
70426-
enum:
70427-
- RSA
7042870425
n:
7042970426
type: string
7043070427
description: RSA key value (modulus) for key binding

0 commit comments

Comments
 (0)