Auth0 · Schema

SessionAuthenticationSignals

Details about authentication signals obtained during the login flow

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
methods array Contains the authentication methods a user has completed during their session
View JSON Schema on GitHub

JSON Schema

auth0-sessionauthenticationsignals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionAuthenticationSignals",
  "title": "SessionAuthenticationSignals",
  "type": "object",
  "description": "Details about authentication signals obtained during the login flow",
  "additionalProperties": true,
  "properties": {
    "methods": {
      "type": "array",
      "description": "Contains the authentication methods a user has completed during their session",
      "items": {
        "$ref": "#/components/schemas/SessionAuthenticationSignal"
      }
    }
  }
}