IBM WebSphere · Schema
ManagedServer
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique server identifier |
| name | string | Server name |
| type | string | |
| version | string | WebSphere version |
| host | string | Server hostname |
| port | integer | Server port |
| status | string | |
| vulnerabilityCount | integer | Number of open vulnerabilities |
| lastScanDate | string | |
| registeredDate | string | |
| installedFixes | array | List of installed fix IDs |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ManagedServer",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique server identifier"
},
"name": {
"type": "string",
"description": "Server name"
},
"type": {
"type": "string"
},
"version": {
"type": "string",
"description": "WebSphere version"
},
"host": {
"type": "string",
"description": "Server hostname"
},
"port": {
"type": "integer",
"description": "Server port"
},
"status": {
"type": "string"
},
"vulnerabilityCount": {
"type": "integer",
"description": "Number of open vulnerabilities"
},
"lastScanDate": {
"type": "string"
},
"registeredDate": {
"type": "string"
},
"installedFixes": {
"type": "array",
"description": "List of installed fix IDs"
}
}
}