Properties
| Name | Type | Description |
|---|---|---|
| effectiveDate | string | The effective date of the job change. |
| reason | object | |
| proposedPosition | object | |
| proposedLocation | object | |
| proposedBusinessTitle | string | |
| proposedJobProfile | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JobChangeRequest",
"title": "JobChangeRequest",
"type": "object",
"properties": {
"effectiveDate": {
"type": "string",
"format": "date",
"description": "The effective date of the job change.",
"example": "2026-01-15"
},
"reason": {
"$ref": "#/components/schemas/ResourceReference"
},
"proposedPosition": {
"$ref": "#/components/schemas/ResourceReference"
},
"proposedLocation": {
"$ref": "#/components/schemas/ResourceReference"
},
"proposedBusinessTitle": {
"type": "string",
"example": "example_value"
},
"proposedJobProfile": {
"$ref": "#/components/schemas/ResourceReference"
}
},
"required": [
"effectiveDate",
"reason"
]
}