Auth0 · Schema

ConnectionAttributes

Attribute configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
email object
phone_number object
username object
View JSON Schema on GitHub

JSON Schema

auth0-connectionattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionAttributes",
  "title": "ConnectionAttributes",
  "type": "object",
  "description": "Attribute configuration",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "email": {
      "$ref": "#/components/schemas/EmailAttribute"
    },
    "phone_number": {
      "$ref": "#/components/schemas/PhoneAttribute"
    },
    "username": {
      "$ref": "#/components/schemas/UsernameAttribute"
    }
  }
}