Auth0 · Schema
EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData
Profile data for the user.
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| string | Email address of this user. | |
| email_verified | boolean | Whether this email address is verified (true) or unverified (false). |
| name | string | Name of this user. |
| username | string | Username of this user. |
| given_name | string | Given name/first name/forename of this user. |
| family_name | string | Family name/last name/surname of this user. |
| phone_number | string | Phone number of this user. |
| phone_verified | boolean | Whether this phone number has been verified (true) or not (false). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData",
"title": "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData",
"type": "object",
"description": "Profile data for the user.",
"additionalProperties": true,
"properties": {
"email": {
"type": "string",
"description": "Email address of this user.",
"format": "email"
},
"email_verified": {
"type": "boolean",
"description": "Whether this email address is verified (true) or unverified (false)."
},
"name": {
"type": "string",
"description": "Name of this user.",
"minLength": 1,
"maxLength": 300
},
"username": {
"type": "string",
"description": "Username of this user.",
"minLength": 1,
"maxLength": 128,
"pattern": "^[a-zA-Z0-9_+\\-.!#\\$\\^`~@']*$"
},
"given_name": {
"type": "string",
"description": "Given name/first name/forename of this user.",
"minLength": 1,
"maxLength": 150
},
"family_name": {
"type": "string",
"description": "Family name/last name/surname of this user.",
"minLength": 1,
"maxLength": 150
},
"phone_number": {
"type": "string",
"description": "Phone number of this user.",
"pattern": "^\\+[0-9]{1,15}$"
},
"phone_verified": {
"type": "boolean",
"description": "Whether this phone number has been verified (true) or not (false)."
}
}
}