Amazon X-Ray · JSON Structure

Xray Http Structure

Information about an HTTP request.

Type: object Properties: 5
Application PerformanceDebuggingDistributed TracingMonitoringObservability

Http is a JSON Structure definition published by Amazon X-Ray, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

HttpURL HttpStatus HttpMethod UserAgent ClientIp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "HttpURL": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The request URL."
        }
      ]
    },
    "HttpStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableInteger"
        },
        {
          "description": "The response status."
        }
      ]
    },
    "HttpMethod": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The request method."
        }
      ]
    },
    "UserAgent": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The request's user agent string."
        }
      ]
    },
    "ClientIp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The IP address of the requestor."
        }
      ]
    }
  },
  "description": "Information about an HTTP request.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "Http",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-http-structure.json"
}