Rapid7 · Schema

Exchange

The HTTP exchange executed as part of the attack

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
id string The ID of the Exchange
request string The critical section of the request payload
response string The critical section of the response payload
View JSON Schema on GitHub

JSON Schema

rapid7-exchange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Exchange",
  "title": "Exchange",
  "description": "The HTTP exchange executed as part of the attack",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the Exchange",
      "readOnly": true
    },
    "request": {
      "type": "string",
      "description": "The critical section of the request payload",
      "readOnly": true
    },
    "response": {
      "type": "string",
      "description": "The critical section of the response payload",
      "readOnly": true
    }
  },
  "readOnly": true
}