{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData", "title": "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData", "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)." } } }