Aqua Security · Schema

ErrorResponse

ErrorResponse schema from Aqua Security API

Cloud NativeContainersKubernetesRuntime ProtectionSecurityVulnerability Scanning

Properties

Name Type Description
message string Human-readable error description
code integer Error code
View JSON Schema on GitHub

JSON Schema

aqua-security-api-error-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "example": "Unauthorized access",
      "description": "Human-readable error description"
    },
    "code": {
      "type": "integer",
      "example": 401,
      "description": "Error code"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aqua-security/refs/heads/main/json-schema/aqua-security-api-error-response-schema.json",
  "title": "ErrorResponse",
  "description": "ErrorResponse schema from Aqua Security API"
}