Properties
| Name | Type | Description |
|---|---|---|
| positionId | integer | Position identifier |
| name | string | Position name |
| jobId | integer | Job identifier |
| organizationId | integer | Organization identifier |
| effectiveStartDate | string | |
| effectiveEndDate | string | |
| status | string | Position status |
| availabilityStatusId | integer | |
| businessGroupId | integer | |
| locationId | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Position",
"title": "Position",
"type": "object",
"properties": {
"positionId": {
"type": "integer",
"description": "Position identifier",
"example": "500123"
},
"name": {
"type": "string",
"description": "Position name",
"example": "Example Title"
},
"jobId": {
"type": "integer",
"description": "Job identifier",
"example": "500123"
},
"organizationId": {
"type": "integer",
"description": "Organization identifier",
"example": "500123"
},
"effectiveStartDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"effectiveEndDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"status": {
"type": "string",
"description": "Position status",
"example": "example_value"
},
"availabilityStatusId": {
"type": "integer",
"example": "500123"
},
"businessGroupId": {
"type": "integer",
"example": "500123"
},
"locationId": {
"type": "integer",
"example": "500123"
}
}
}