Workday Advanced Compensation · JSON Structure

Workday Advanced Compensation Compensation Change Request Structure

A request to change an employee's compensation

Type: object Properties: 8 Required: 5

Workday Advanced Compensation Compensation Change Request Structure is a JSON Structure definition published by Workday Advanced Compensation, describing 8 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

employeeId effectiveDate changeReason newBasePay currency payFrequency compensationGradeId comments

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-advanced-compensation/refs/heads/main/json-structure/workday-advanced-compensation-compensation-change-request-structure.json",
  "title": "Compensation Change Request",
  "description": "A request to change an employee's compensation",
  "type": "object",
  "properties": {
    "employeeId": {
      "description": "Employee identifier",
      "type": "string"
    },
    "effectiveDate": {
      "description": "Change effective date",
      "type": "date"
    },
    "changeReason": {
      "description": "Reason for the compensation change",
      "type": "string"
    },
    "newBasePay": {
      "description": "New base pay amount",
      "type": "double"
    },
    "currency": {
      "description": "Currency code",
      "type": "string"
    },
    "payFrequency": {
      "description": "Pay frequency",
      "type": "string"
    },
    "compensationGradeId": {
      "description": "New compensation grade",
      "type": "string"
    },
    "comments": {
      "description": "Additional comments",
      "type": "string"
    }
  },
  "required": [
    "employeeId",
    "effectiveDate",
    "changeReason",
    "newBasePay",
    "currency"
  ]
}