Auth0 · Schema

ClientSignedRequestObjectWithCredentialId

JWT-secured Authorization Requests (JAR) settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
required boolean Indicates whether the JAR requests are mandatory
credentials array
View JSON Schema on GitHub

JSON Schema

auth0-clientsignedrequestobjectwithcredentialid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientSignedRequestObjectWithCredentialId",
  "title": "ClientSignedRequestObjectWithCredentialId",
  "type": "object",
  "description": "JWT-secured Authorization Requests (JAR) settings.",
  "additionalProperties": false,
  "properties": {
    "required": {
      "type": "boolean",
      "description": "Indicates whether the JAR requests are mandatory",
      "default": false
    },
    "credentials": {
      "type": "array",
      "minItems": 0,
      "items": {
        "$ref": "#/components/schemas/CredentialId"
      }
    }
  }
}