IBM WebSphere · Schema

ApplicationStatus

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
name string
status string
message string
View JSON Schema on GitHub

JSON Schema

websphere-applicationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationStatus",
  "title": "ApplicationStatus",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "status": {
      "type": "string",
      "enum": [
        "started",
        "stopped",
        "starting",
        "stopping"
      ],
      "example": "started"
    },
    "message": {
      "type": "string",
      "example": "example_value"
    }
  }
}