Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the cost center |
| name | string | Cost center name |
| code | string | Cost center reference code |
| active | boolean | Whether the cost center is active |
| manager | object | Cost center manager reference |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CostCenter",
"title": "CostCenter",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the cost center"
},
"name": {
"type": "string",
"description": "Cost center name"
},
"code": {
"type": "string",
"description": "Cost center reference code"
},
"active": {
"type": "boolean",
"description": "Whether the cost center is active"
},
"manager": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"description": "Cost center manager reference"
}
}
}