Auth0 · Schema

CustomSigningKeyJWK

JWK representing a custom public signing key.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
kty object
kid string Key identifier
use object
key_ops array Key operations
alg object
n string Key modulus
e string Key exponent
crv object
x string X coordinate
y string Y coordinate
x5u string X.509 URL
x5c array X.509 certificate chain
x5t string X.509 certificate SHA-1 thumbprint
x5t#S256 string X.509 certificate SHA-256 thumbprint
View JSON Schema on GitHub

JSON Schema

auth0-customsigningkeyjwk-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomSigningKeyJWK",
  "title": "CustomSigningKeyJWK",
  "type": "object",
  "description": "JWK representing a custom public signing key.",
  "additionalProperties": false,
  "required": [
    "kty"
  ],
  "properties": {
    "kty": {
      "$ref": "#/components/schemas/CustomSigningKeyTypeEnum"
    },
    "kid": {
      "type": "string",
      "description": "Key identifier"
    },
    "use": {
      "$ref": "#/components/schemas/CustomSigningKeyUseEnum"
    },
    "key_ops": {
      "type": "array",
      "description": "Key operations",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/CustomSigningKeyOperationEnum"
      }
    },
    "alg": {
      "$ref": "#/components/schemas/CustomSigningKeyAlgorithmEnum"
    },
    "n": {
      "type": "string",
      "description": "Key modulus"
    },
    "e": {
      "type": "string",
      "description": "Key exponent"
    },
    "crv": {
      "$ref": "#/components/schemas/CustomSigningKeyCurveEnum"
    },
    "x": {
      "type": "string",
      "description": "X coordinate"
    },
    "y": {
      "type": "string",
      "description": "Y coordinate"
    },
    "x5u": {
      "type": "string",
      "description": "X.509 URL"
    },
    "x5c": {
      "type": "array",
      "description": "X.509 certificate chain",
      "minItems": 1,
      "items": {
        "type": "string"
      }
    },
    "x5t": {
      "type": "string",
      "description": "X.509 certificate SHA-1 thumbprint"
    },
    "x5t#S256": {
      "type": "string",
      "description": "X.509 certificate SHA-256 thumbprint"
    }
  }
}