Apache ActiveMQ · Schema

JolokiaError

Jolokia error response envelope.

AMQPApacheJavaJMSMessage BrokerMessagingMQTTOpen SourceSTOMP

Properties

Name Type Description
error_type string Error class name.
error string Error message.
status integer HTTP status code.
timestamp integer Unix timestamp of the error response.
View JSON Schema on GitHub

JSON Schema

rest-jolokia-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-activemq/refs/heads/main/json-schema/rest-jolokia-error-schema.json",
  "title": "JolokiaError",
  "description": "Jolokia error response envelope.",
  "type": "object",
  "properties": {
    "error_type": {
      "type": "string",
      "description": "Error class name.",
      "example": "java.lang.IllegalArgumentException"
    },
    "error": {
      "type": "string",
      "description": "Error message.",
      "example": "No MBean found for pattern"
    },
    "status": {
      "type": "integer",
      "description": "HTTP status code.",
      "example": 404
    },
    "timestamp": {
      "type": "integer",
      "description": "Unix timestamp of the error response.",
      "example": 1718153645
    }
  }
}