Auth0 · Schema

SessionAuthenticationSignal

Authentication signal details

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string One of: "federated", "passkey", "pwd", "sms", "email", "mfa", "mock" or a custom method denoted by a URL
timestamp object
type string A specific MFA factor. Only present when "name" is set to "mfa"
View JSON Schema on GitHub

JSON Schema

auth0-sessionauthenticationsignal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionAuthenticationSignal",
  "title": "SessionAuthenticationSignal",
  "type": "object",
  "description": "Authentication signal details",
  "additionalProperties": true,
  "properties": {
    "name": {
      "type": "string",
      "description": "One of: \"federated\", \"passkey\", \"pwd\", \"sms\", \"email\", \"mfa\", \"mock\" or a custom method denoted by a URL"
    },
    "timestamp": {
      "$ref": "#/components/schemas/SessionDate"
    },
    "type": {
      "type": "string",
      "description": "A specific MFA factor. Only present when \"name\" is set to \"mfa\""
    }
  }
}