Amazon X-Ray · Schema

Alias

An alias for an edge.

Application PerformanceDebuggingDistributed TracingMonitoringObservability

Properties

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

JSON Schema

xray-alias-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The canonical name of the alias."
        }
      ]
    },
    "Names": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AliasNames"
        },
        {
          "description": "A list of names for the alias, including the canonical name."
        }
      ]
    },
    "Type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The type of the alias."
        }
      ]
    }
  },
  "description": "An alias for an edge.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Alias",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-schema/xray-alias-schema.json"
}