Amazon X-Ray · Schema

RootCauseException

The exception associated with a root cause.

Application PerformanceDebuggingDistributed TracingMonitoringObservability

Properties

Name Type Description
Name object
Message object
View JSON Schema on GitHub

JSON Schema

xray-root-cause-exception-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the exception."
        }
      ]
    },
    "Message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The message of the exception."
        }
      ]
    }
  },
  "description": "The exception associated with a root cause.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RootCauseException",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-schema/xray-root-cause-exception-schema.json"
}