TaskStatus

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
status string Task status
progress string Progress description
completed boolean Whether the task is complete
View JSON Schema on GitHub

JSON Schema

weblogic-taskstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskStatus",
  "title": "TaskStatus",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Task status"
    },
    "progress": {
      "type": "string",
      "description": "Progress description"
    },
    "completed": {
      "type": "boolean",
      "description": "Whether the task is complete"
    }
  }
}