Auth0 · Schema

PhoneAttribute

Configuration for the phone number attribute for users.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
identifier object
profile_required boolean Determines if property should be required for users
signup object
View JSON Schema on GitHub

JSON Schema

auth0-phoneattribute-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhoneAttribute",
  "title": "PhoneAttribute",
  "type": "object",
  "description": "Configuration for the phone number attribute for users.",
  "additionalProperties": false,
  "properties": {
    "identifier": {
      "$ref": "#/components/schemas/ConnectionAttributeIdentifier"
    },
    "profile_required": {
      "type": "boolean",
      "description": "Determines if property should be required for users"
    },
    "signup": {
      "$ref": "#/components/schemas/SignupVerified"
    }
  }
}