PeopleSoft · Schema
Position
PeopleSoft HCM position data.
Campus SolutionsCRMEnterprise SoftwareERPFinancial ManagementHCMSupply Chain Management
Properties
| Name | Type | Description |
|---|---|---|
| POSITION_NBR | string | Position number. |
| DESCR | string | Position description. |
| DEPTID | string | Department ID. |
| JOBCODE | string | Job code. |
| LOCATION | string | Location code. |
| REPORTS_TO | string | Reports-to position. |
| MAX_HEAD_COUNT | integer | Maximum headcount. |
| POSN_STATUS | string | Position status. |
| EFFDT | string | Effective date. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/peoplesoft/refs/heads/main/json-schema/peoplesoft-hcm-position-schema.json",
"title": "Position",
"description": "PeopleSoft HCM position data.",
"type": "object",
"properties": {
"POSITION_NBR": {
"type": "string",
"description": "Position number.",
"example": "00012345"
},
"DESCR": {
"type": "string",
"description": "Position description.",
"example": "Senior Software Engineer"
},
"DEPTID": {
"type": "string",
"description": "Department ID.",
"example": "10200"
},
"JOBCODE": {
"type": "string",
"description": "Job code.",
"example": "MGR001"
},
"LOCATION": {
"type": "string",
"description": "Location code.",
"example": "HQ001"
},
"REPORTS_TO": {
"type": "string",
"description": "Reports-to position.",
"example": "00012340"
},
"MAX_HEAD_COUNT": {
"type": "integer",
"description": "Maximum headcount.",
"example": 1
},
"POSN_STATUS": {
"type": "string",
"description": "Position status.",
"enum": [
"A",
"I",
"F"
],
"example": "A"
},
"EFFDT": {
"type": "string",
"format": "date",
"description": "Effective date.",
"example": "2024-01-01"
}
},
"x-schema-source": "domain-knowledge"
}