PeopleSoft · JSON Structure

Peoplesoft Hcm Employee Structure

PeopleSoft HCM employee personal data record.

Type: object Properties: 26
Campus SolutionsCRMEnterprise SoftwareERPFinancial ManagementHCMSupply Chain Management

Employee is a JSON Structure definition published by PeopleSoft, describing 26 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

EMPLID NAME FIRST_NAME LAST_NAME DEPTID JOBCODE POSITION_NBR LOCATION COMPANY BUSINESS_UNIT EMPL_STATUS HR_STATUS REG_TEMP FULL_PART_TIME HIRE_DT TERMINATION_DT ANNUAL_RT CURRENCY_CD EMAIL_ADDR PHONE ADDRESS1 CITY STATE POSTAL COUNTRY SUPERVISOR_ID

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peoplesoft/refs/heads/main/json-structure/peoplesoft-hcm-employee-structure.json",
  "name": "Employee",
  "description": "PeopleSoft HCM employee personal data record.",
  "type": "object",
  "properties": {
    "EMPLID": {
      "type": "string",
      "description": "Employee ID.",
      "example": "EMP001234"
    },
    "NAME": {
      "type": "string",
      "description": "Employee full name.",
      "example": "Jane Smith"
    },
    "FIRST_NAME": {
      "type": "string",
      "description": "First name.",
      "example": "Jane"
    },
    "LAST_NAME": {
      "type": "string",
      "description": "Last name.",
      "example": "Smith"
    },
    "DEPTID": {
      "type": "string",
      "description": "Department ID.",
      "example": "10200"
    },
    "JOBCODE": {
      "type": "string",
      "description": "Job code.",
      "example": "MGR001"
    },
    "POSITION_NBR": {
      "type": "string",
      "description": "Position number.",
      "example": "00012345"
    },
    "LOCATION": {
      "type": "string",
      "description": "Work location code.",
      "example": "HQ001"
    },
    "COMPANY": {
      "type": "string",
      "description": "Company code.",
      "example": "CCB"
    },
    "BUSINESS_UNIT": {
      "type": "string",
      "description": "Business unit.",
      "example": "US001"
    },
    "EMPL_STATUS": {
      "type": "string",
      "description": "Employment status.",
      "enum": [
        "A",
        "D",
        "L",
        "P",
        "R",
        "S",
        "T",
        "U",
        "W",
        "X"
      ],
      "example": "A"
    },
    "HR_STATUS": {
      "type": "string",
      "description": "HR status.",
      "enum": [
        "A",
        "I",
        "D"
      ],
      "example": "A"
    },
    "REG_TEMP": {
      "type": "string",
      "description": "Regular or temporary.",
      "enum": [
        "R",
        "T"
      ],
      "example": "R"
    },
    "FULL_PART_TIME": {
      "type": "string",
      "description": "Full or part time.",
      "enum": [
        "F",
        "P"
      ],
      "example": "F"
    },
    "HIRE_DT": {
      "type": "date",
      "description": "Hire date.",
      "example": "2020-01-15"
    },
    "TERMINATION_DT": {
      "type": "date",
      "description": "Termination date."
    },
    "ANNUAL_RT": {
      "type": "double",
      "description": "Annual salary rate.",
      "example": 85000.0
    },
    "CURRENCY_CD": {
      "type": "string",
      "description": "Currency code.",
      "example": "USD"
    },
    "EMAIL_ADDR": {
      "type": "string",
      "format": "email",
      "description": "Email address.",
      "example": "jane.smith@example.com"
    },
    "PHONE": {
      "type": "string",
      "description": "Phone number.",
      "example": "555-0123"
    },
    "ADDRESS1": {
      "type": "string",
      "description": "Street address.",
      "example": "123 Main St"
    },
    "CITY": {
      "type": "string",
      "description": "City.",
      "example": "San Francisco"
    },
    "STATE": {
      "type": "string",
      "description": "State code.",
      "example": "CA"
    },
    "POSTAL": {
      "type": "string",
      "description": "Postal code.",
      "example": "94105"
    },
    "COUNTRY": {
      "type": "string",
      "description": "Country code.",
      "example": "USA"
    },
    "SUPERVISOR_ID": {
      "type": "string",
      "description": "Supervisor employee ID.",
      "example": "EMP000567"
    }
  },
  "x-schema-source": "domain-knowledge"
}