Amazon X-Ray · Schema

TraceUser

Information about a user recorded in segment documents.

Application PerformanceDebuggingDistributed TracingMonitoringObservability

Properties

Name Type Description
UserName object
ServiceIds object
View JSON Schema on GitHub

JSON Schema

xray-trace-user-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The user's name."
        }
      ]
    },
    "ServiceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ServiceIds"
        },
        {
          "description": "Services that the user's request hit."
        }
      ]
    }
  },
  "description": "Information about a user recorded in segment documents.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TraceUser",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-schema/xray-trace-user-schema.json"
}