Auth0 · Schema

SetCustomSigningKeysRequestContent

JWKS representing an array of custom public signing keys.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
keys array An array of custom public signing keys.
View JSON Schema on GitHub

JSON Schema

auth0-setcustomsigningkeysrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetCustomSigningKeysRequestContent",
  "title": "SetCustomSigningKeysRequestContent",
  "type": "object",
  "description": "JWKS representing an array of custom public signing keys.",
  "additionalProperties": false,
  "required": [
    "keys"
  ],
  "properties": {
    "keys": {
      "type": "array",
      "description": "An array of custom public signing keys.",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/CustomSigningKeyJWK"
      }
    }
  }
}