Amazon Connect · Schema

UserSummary

Contains summary information about a user.

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
Id string The identifier of the user account.
Arn string The Amazon Resource Name (ARN) of the user account.
Username string The Amazon Connect user name of the user account.
View JSON Schema on GitHub

JSON Schema

user-summary-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-summary-schema.json",
  "title": "UserSummary",
  "description": "Contains summary information about a user.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The identifier of the user account.",
      "example": "500123"
    },
    "Arn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the user account.",
      "example": "arn:aws:connect:us-east-1:123456789012:instance/a1b2c3d4/agent/500123"
    },
    "Username": {
      "type": "string",
      "description": "The Amazon Connect user name of the user account.",
      "example": "jsmith"
    }
  }
}