Rapid7 · Schema

ErrorResponse1

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
message string A human-readable message describing the error that occurred.
correlation_id string An identifier that uniquely identifies the failed request.
View JSON Schema on GitHub

JSON Schema

rapid7-errorresponse1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse1",
  "title": "ErrorResponse1",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "A human-readable message describing the error that occurred.",
      "example": "A human-readable message describing the error that occurred."
    },
    "correlation_id": {
      "type": "string",
      "description": "An identifier that uniquely identifies the failed request.",
      "example": "An identifier that uniquely identifies the failed request."
    }
  },
  "required": [
    "message"
  ]
}