TaskStatus

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
identity array
taskStatus string Status text (e.g., TASK COMPLETED)
progress string Progress indicator (e.g., success, processing)
description string
operation string
running boolean
completed boolean
startTime string
endTime string
links array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-taskstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskStatus",
  "title": "TaskStatus",
  "type": "object",
  "properties": {
    "identity": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "taskStatus": {
      "type": "string",
      "description": "Status text (e.g., TASK COMPLETED)"
    },
    "progress": {
      "type": "string",
      "description": "Progress indicator (e.g., success, processing)"
    },
    "description": {
      "type": "string"
    },
    "operation": {
      "type": "string"
    },
    "running": {
      "type": "boolean"
    },
    "completed": {
      "type": "boolean"
    },
    "startTime": {
      "type": "string",
      "format": "date-time"
    },
    "endTime": {
      "type": "string",
      "format": "date-time"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}