IBM WebSphere · Schema
Application
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Application name |
| status | string | Current application status |
| contextRoot | string | Context root for web modules |
| targetServer | string | Target server or cluster |
| deployedModules | array | |
| lastModified | string | Last modification timestamp |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Application",
"title": "Application",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Application name",
"example": "Example Title"
},
"status": {
"type": "string",
"enum": [
"started",
"stopped",
"unknown"
],
"description": "Current application status",
"example": "started"
},
"contextRoot": {
"type": "string",
"description": "Context root for web modules",
"example": "example_value"
},
"targetServer": {
"type": "string",
"description": "Target server or cluster",
"example": "example_value"
},
"deployedModules": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"web",
"ejb",
"connector"
]
},
"uri": {
"type": "string"
}
}
},
"example": []
},
"lastModified": {
"type": "string",
"format": "date-time",
"description": "Last modification timestamp",
"example": "2026-01-15T10:30:00Z"
}
}
}