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",
"title": "Position",
"type": "object",
"properties": {
"positionId": {
"type": "integer",
"description": "Position identifier"
},
"name": {
"type": "string",
"description": "Position name"
},
"jobId": {
"type": "integer",
"description": "Job identifier"
},
"organizationId": {
"type": "integer",
"description": "Organization identifier"
},
"effectiveStartDate": {
"type": "string"
},
"effectiveEndDate": {
"type": "string"
},
"status": {
"type": "string",
"description": "Position status"
},
"availabilityStatusId": {
"type": "integer"
},
"businessGroupId": {
"type": "integer"
},
"locationId": {
"type": "integer"
}
}
}