AWS X-Ray · Schema

Tag

DebuggingDistributed TracingMicroservicesObservability

Properties

Name Type Description
Key string
Value string
View JSON Schema on GitHub

JSON Schema

x-ray-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Tag",
  "type": "object",
  "properties": {
    "Key": {
      "type": "string"
    },
    "Value": {
      "type": "string"
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}