Auth0 · Schema

PublicKeyCredentialAlgorithmEnum

Algorithm which will be used with the credential. Can be one of RS256, RS384, PS256. If not specified, RS256 will be used. Applies to `public_key` credential type.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-publickeycredentialalgorithmenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicKeyCredentialAlgorithmEnum",
  "title": "PublicKeyCredentialAlgorithmEnum",
  "type": "string",
  "description": "Algorithm which will be used with the credential. Can be one of RS256, RS384, PS256. If not specified, RS256 will be used. Applies to `public_key` credential type.",
  "default": "RS256",
  "enum": [
    "RS256",
    "RS384",
    "PS256"
  ]
}