Rapid7 · Schema

ValidationError

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
type string The type of the validation error
context string An optional contextual indicator of a part of the request which failed validation
explanation string Details of the validation error
View JSON Schema on GitHub

JSON Schema

rapid7-validationerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidationError",
  "title": "ValidationError",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of the validation error",
      "enum": [
        "OBJECT",
        "PROPERTY"
      ],
      "readOnly": true
    },
    "context": {
      "type": "string",
      "description": "An optional contextual indicator of a part of the request which failed validation",
      "readOnly": true
    },
    "explanation": {
      "type": "string",
      "description": "Details of the validation error",
      "readOnly": true
    }
  }
}