TaskAction

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
action string Action to perform
comment string Comment for the action
assignee string Assignee for reassign action
View JSON Schema on GitHub

JSON Schema

oracle-fusion-taskaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskAction",
  "title": "TaskAction",
  "type": "object",
  "required": [
    "action"
  ],
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to perform",
      "enum": [
        "APPROVE",
        "REJECT",
        "REASSIGN",
        "ESCALATE",
        "SUSPEND",
        "WITHDRAW",
        "PUSHBACK",
        "REQUEST_INFORMATION"
      ]
    },
    "comment": {
      "type": "string",
      "description": "Comment for the action"
    },
    "assignee": {
      "type": "string",
      "description": "Assignee for reassign action"
    }
  }
}