IBM WebSphere · Schema
LibertyServer
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Server name |
| wlpVersion | string | Liberty version |
| productEdition | string | Product edition |
| javaVersion | string | Java version |
| javaVendor | string | Java vendor |
| serverStatus | string | |
| uptime | integer | Server uptime in milliseconds |
| installDirectory | string | Liberty installation directory |
| serverDirectory | string | Server configuration directory |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LibertyServer",
"title": "LibertyServer",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Server name",
"example": "Example Title"
},
"wlpVersion": {
"type": "string",
"description": "Liberty version",
"example": "example_value"
},
"productEdition": {
"type": "string",
"description": "Product edition",
"example": "example_value"
},
"javaVersion": {
"type": "string",
"description": "Java version",
"example": "example_value"
},
"javaVendor": {
"type": "string",
"description": "Java vendor",
"example": "example_value"
},
"serverStatus": {
"type": "string",
"enum": [
"STARTED",
"STOPPED",
"STARTING",
"STOPPING"
],
"example": "STARTED"
},
"uptime": {
"type": "integer",
"description": "Server uptime in milliseconds",
"example": 10
},
"installDirectory": {
"type": "string",
"description": "Liberty installation directory",
"example": "example_value"
},
"serverDirectory": {
"type": "string",
"description": "Server configuration directory",
"example": "example_value"
}
}
}