Workday Business Processes · JSON Structure

Workday Business Processes Approval Request Structure

Request to approve an inbox item in a business process

Type: object Properties: 2 Required: 1

Workday Business Processes Approval Request Structure is a JSON Structure definition published by Workday Business Processes, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

comment approverId

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-business-processes/refs/heads/main/json-structure/workday-business-processes-approval-request-structure.json",
  "title": "Approval Request",
  "description": "Request to approve an inbox item in a business process",
  "type": "object",
  "properties": {
    "comment": {
      "description": "Approval comment",
      "type": "string"
    },
    "approverId": {
      "description": "ID of the approving user",
      "type": "string"
    }
  },
  "required": [
    "approverId"
  ]
}