An object used to organize resources like service offerings and personnel in larger companies.
Resource placeholders are only available in the pro plan and require the resource allocations feature to be turned on in your workspace.
Example
{
"id": "3f8d25b7-b5d2-4e7e-9e22-1fee9a7a8192",
"name": "Engineer",
"isActive": true,
"isBillable": true,
"rateCurrency": "USD",
"rate": 200,
"costCurrency": "USD",
"costPerHour": 85,
"createdAt": "2024-07-11T13:10:33.842Z",
"discipline": {
"id": "996bf40b-d856-4c8c-b14a-f41b3a015c5b",
"name": "Software Engineering"
},
"location": {
"id": "7f709db9-93a2-4946-985d-adf50deff22f",
"name": "Europe"
},
"practice": {
"id": "40f95471-7f7c-4ffa-b838-8dcccab0f54a",
"name": "Digital Transformation"
},
"skills": [
{
"id": "802c3214-59b4-4f9b-9eb1-4da2674becc3",
"name": "JavaScript"
},
{
"id": "efae4ed9-6967-4f76-9946-7b9b1008fe5e",
"name": "HTML"
}
],
}
Attributes
| Name | Type | Description |
|---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the placeholder. |
isActive | boolean | A flag to indicate if the placeholder is active in the system. |
isBillable | boolean | A flag to indicate if the placeholder should be billable. |
rateCurrency | string | The currency code for the placeholder's rate. This will be null if the resource is not billable. |
rate | decimal | The placeholder's rate. This will be null if the resource is not billable. |
costCurrency | string | The currency code for the placeholder's cost. |
costPerHour | decimal | The placeholder's cost per hour. |
createdAt | timestamp | The timestamp when the object was created. |
discipline | object | A simple object to the related discipline. See attributes . |
location | object | A simple object to the related location. See attributes . |
practice | object | A simple object to the related practice. See attributes . |
skills | array of objects | The list of associated skills. See attributes . |
Discipline attributes
| Name | Type | Description |
|---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the discipline. |
Location attributes
| Name | Type | Description |
|---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the location. |
Practice attributes
| Name | Type | Description |
|---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the practice. |
Skill attributes
| Name | Type | Description |
|---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the skill. |
