IBM WebSphere · Example Payload

Websphere Listfixes Example

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Websphere Listfixes Example is an example object payload from IBM WebSphere, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listFixes",
  "method": "GET",
  "path": "/fixes",
  "summary": "List Available Fixes",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listfixes200Example",
      "example": {
        "fixes": [
          {
            "id": "abc123",
            "name": "Example Title",
            "type": "security",
            "description": "A sample description.",
            "resolvedCVEs": [
              {}
            ],
            "applicableVersions": [
              {}
            ],
            "downloadURL": "https://www.example.com",
            "releaseDate": "2026-01-15T10:30:00Z",
            "size": 10
          }
        ],
        "totalCount": 10
      }
    }
  ]
}