{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-structure/user-identity-info-structure.json", "name": "UserIdentityInfo", "description": "Contains information about the identity of a user.", "type": "object", "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": "jsmith@example.com" }, "SecondaryEmail": { "type": "string", "format": "email", "description": "The secondary email address." }, "Mobile": { "type": "string", "description": "The user's mobile number." } } }