UKG · Schema

PersonnelChangeResponse

Response from a personnel change request submission

Human Capital ManagementHCMWorkforce ManagementHRPayrollTime and AttendanceBenefitsScheduling

Properties

Name Type Description
requestId string Change request identifier
status string Processing status
submittedAt string Submission timestamp
View JSON Schema on GitHub

JSON Schema

pro-hcm-personnel-change-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ukg/refs/heads/main/json-schema/pro-hcm-personnel-change-response-schema.json",
  "title": "PersonnelChangeResponse",
  "description": "Response from a personnel change request submission",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Change request identifier",
      "example": "CHG-2026-00123"
    },
    "status": {
      "type": "string",
      "description": "Processing status",
      "example": "Pending",
      "enum": [
        "Pending",
        "Approved",
        "Rejected",
        "Completed"
      ]
    },
    "submittedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Submission timestamp",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}