UKG · Schema

Department

Organizational department

Human Capital ManagementHCMWorkforce ManagementHRPayrollTime and AttendanceBenefitsScheduling

Properties

Name Type Description
departmentId string Department identifier
departmentName string Department name
parentDepartmentId string Parent department identifier
managerId string Department manager employee ID
costCenterId string Associated cost center
View JSON Schema on GitHub

JSON Schema

pro-hcm-department-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-department-schema.json",
  "title": "Department",
  "description": "Organizational department",
  "type": "object",
  "properties": {
    "departmentId": {
      "type": "string",
      "description": "Department identifier",
      "example": "DEPT-HR"
    },
    "departmentName": {
      "type": "string",
      "description": "Department name",
      "example": "Human Resources"
    },
    "parentDepartmentId": {
      "type": "string",
      "description": "Parent department identifier",
      "example": "EMP001"
    },
    "managerId": {
      "type": "string",
      "description": "Department manager employee ID",
      "example": "EMP001"
    },
    "costCenterId": {
      "type": "string",
      "description": "Associated cost center",
      "example": "CC-100"
    }
  }
}