Contains information about the identity of a user.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserIdentityInfo", "title": "UserIdentityInfo", "type": "object", "description": "Contains information about the identity of a user.", "properties": { "FirstName": { "type": "string", "description": "The first name.", "example": "Jane" }, "LastName": { "type": "string", "description": "The last name.", "example": "Smith" }, "Email": { "type": "string", "format": "email", "description": "The email address.", "example": "[email protected]" }, "SecondaryEmail": { "type": "string", "format": "email", "description": "The secondary email address." }, "Mobile": { "type": "string", "description": "The user's mobile number." } } }