Auth0 · Schema

ConnectionPasskeyOptions

Options for the passkey authentication method

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
challenge_ui object
progressive_enrollment_enabled boolean Enables or disables progressive enrollment of passkeys for the connection.
local_enrollment_enabled boolean Enables or disables enrollment prompt for local passkey when user authenticates using a cross-device passkey for the connection.
View JSON Schema on GitHub

JSON Schema

auth0-connectionpasskeyoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionPasskeyOptions",
  "title": "ConnectionPasskeyOptions",
  "type": [
    "object",
    "null"
  ],
  "description": "Options for the passkey authentication method",
  "additionalProperties": false,
  "properties": {
    "challenge_ui": {
      "$ref": "#/components/schemas/ConnectionPasskeyChallengeUIEnum"
    },
    "progressive_enrollment_enabled": {
      "type": "boolean",
      "description": "Enables or disables progressive enrollment of passkeys for the connection."
    },
    "local_enrollment_enabled": {
      "type": "boolean",
      "description": "Enables or disables enrollment prompt for local passkey when user authenticates using a cross-device passkey for the connection."
    }
  }
}