Auth0 · Schema

ConnectionIdentifierPrecedence

Order of precedence for attribute types. If the property is not specified, the default precedence of attributes will be used.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionidentifierprecedence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionIdentifierPrecedence",
  "title": "ConnectionIdentifierPrecedence",
  "type": "array",
  "description": "Order of precedence for attribute types. If the property is not specified, the default precedence of attributes will be used.",
  "items": {
    "$ref": "#/components/schemas/ConnectionIdentifierPrecedenceEnum"
  },
  "default": [
    "email",
    "phone_number",
    "username"
  ],
  "uniqueItems": true,
  "minItems": 3,
  "maxItems": 3
}