Amazon Connect · JSON Structure

User Identity Info Structure

Contains information about the identity of a user.

Type: object Properties: 5
ChatContact CenterCustomer ServiceVoiceAIOmnichannel

UserIdentityInfo is a JSON Structure definition published by Amazon Connect, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

FirstName LastName Email SecondaryEmail Mobile

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
    }
  }
}