{ "$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" } } }