Denial Request

Request to deny an inbox item in a business process

Properties

Name Type Description
comment string Denial reason or comment
denierId string ID of the denying user
View JSON Schema on GitHub

JSON Schema

workday-business-processes-denial-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-business-processes/refs/heads/main/json-schema/workday-business-processes-denial-request-schema.json",
  "title": "Denial Request",
  "description": "Request to deny an inbox item in a business process",
  "type": "object",
  "properties": {
    "comment": {
      "type": "string",
      "description": "Denial reason or comment"
    },
    "denierId": {
      "type": "string",
      "description": "ID of the denying user"
    }
  },
  "required": [
    "denierId",
    "comment"
  ]
}