IBM WebSphere · Schema

LibertyApplicationStatus

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

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

JSON Schema

websphere-libertyapplicationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LibertyApplicationStatus",
  "title": "LibertyApplicationStatus",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "state": {
      "type": "string",
      "enum": [
        "STARTED",
        "STOPPED",
        "STARTING",
        "STOPPING"
      ],
      "example": "STARTED"
    },
    "message": {
      "type": "string",
      "example": "example_value"
    }
  }
}