Amazon Connect · Schema

UserIdentityInfo

Contains information about the identity of a user.

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
FirstName string The first name.
LastName string The last name.
Email string The email address.
SecondaryEmail string The secondary email address.
Mobile string The user's mobile number.
View JSON Schema on GitHub

JSON Schema

user-identity-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-schema/user-identity-info-schema.json",
  "title": "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": "[email protected]"
    },
    "SecondaryEmail": {
      "type": "string",
      "format": "email",
      "description": "The secondary email address."
    },
    "Mobile": {
      "type": "string",
      "description": "The user's mobile number."
    }
  }
}