Okta · Schema

AuthorizationServerCredentialsSigningConfig

IdentityWorkforce IdentityCustomer IdentityAuthenticationAuthorizationSingle Sign-OnMulti-Factor AuthenticationIdentity GovernancePrivileged AccessAI AgentsCross-App AccessMCPPlatform

Properties

Name Type Description
kid string
lastRotated string
nextRotation string
rotationMode object
use object
View JSON Schema on GitHub

JSON Schema

okta-authorizationservercredentialssigningconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizationServerCredentialsSigningConfig",
  "title": "AuthorizationServerCredentialsSigningConfig",
  "type": "object",
  "properties": {
    "kid": {
      "type": "string"
    },
    "lastRotated": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "nextRotation": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "rotationMode": {
      "$ref": "#/components/schemas/AuthorizationServerCredentialsRotationMode"
    },
    "use": {
      "$ref": "#/components/schemas/AuthorizationServerCredentialsUse"
    }
  },
  "x-okta-tags": [
    "AuthorizationServer"
  ]
}