IBM WebSphere · Schema

PerformanceData

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
module string Performance module name
timestamp string
metrics array
View JSON Schema on GitHub

JSON Schema

websphere-performancedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PerformanceData",
  "title": "PerformanceData",
  "type": "object",
  "properties": {
    "module": {
      "type": "string",
      "description": "Performance module name",
      "example": "example_value"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "metrics": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "type": {
            "type": "string",
            "enum": [
              "counter",
              "gauge",
              "average"
            ]
          }
        }
      },
      "example": []
    }
  }
}