Before you start using the Talent API, ensure that you have the following prerequisites in place:
User credentials: To access the Talent API, you'll need a valid access token generated using your user credentials. If you don't have one, please contact our support team to obtain your user credentials.
Development Environment: Set up your development environment with the required tools and libraries to make API calls. The Talent API is compatible with a variety of programming languages and frameworks, allowing you flexibility in your implementation.
Understanding of REST APIs: Familiarize yourself with the fundamentals of REST APIs. This will help you understand how to structure your requests and handle responses effectively.
The Talent API documentation is divided into several sections, each addressing different aspects of API usage. Here's a brief overview of each section:
Authorization: This section provides detailed information about the authentication process and guides you on how to get and use the access token in requests to authorize your access to the Talent API.
Use-cases: The Use-cases section provides an in-depth look at how the Talent API's capabilities and functionalities can be applied. It details key use-cases such as Skills, Users, Recruiting, Upskilling, Job Architecture, and AI agent access via MCP. This section serves as a comprehensive guide to understanding the API's core functionalities.
Error Handling: The Error Handling section describes the different types of error responses that can be returned by the Talent API. It offers guidance on how to interpret and handle these errors in your application, ensuring that you can gracefully handle any unexpected situations that may arise during API interactions.
Rate Limiting: The Rate Limiting section explains the rate limits imposed on API calls to ensure fair usage and optimal performance. It provides you with details on the number of requests allowed within a specific timeframe, helping you understand how to manage and handle rate limit-related scenarios effectively.
Support: In the Support section, you will find valuable information on how to seek assistance and get the support you need. Whether you have questions, encounter difficulties, or require clarifications related to the Talent API, our team is readily available to provide prompt assistance and help you overcome any challenges you may face.
API Reference: The API Reference section contains detailed information about each API endpoint supported by the Talent API. It includes comprehensive documentation on the request/response structure, required parameters, and possible responses for each endpoint. This section serves as a comprehensive guide for developers who are implementing the Talent API in their applications.
Download configuration guides, technical designs, and supporting files for integrating SAP SuccessFactors with Cobrainer.
If you are using an AI assistant or agent to work with the Talent API, point it at llms.txt. It provides a machine-friendly index of this documentation: links to the raw OpenAPI specification, the guide chapters as plain markdown, and the MCP servers with their tool catalog.
The Cobrainer REST APIs encompass several principles aimed at implementing standard RESTful practices on a large scale, ensuring consistent data modeling, and delivering a structured developer experience from start to finish.
Only the JSON format is supported for input and output. For all requests, the corresponding HTTP header should be set: Content-Type: application/json. Responses also contain this header.
All endpoints allow control over the language of the returned result. The HTTP Header Accept-Language: en-US or Accept-Language: de-DE should be set for this purpose.
For most entities, a set of typical endpoints is supported with some generic conventions.
OPTIONS: /<entity> - returns a list of possible operations for the given entity. The response contains a list of available methods with path, attributes, and additional metadata. The response considers tenant configuration and requesting user permissions.
GET: /<entity> - returns a list of all objects for the given entity. The response can be sorted and paginated. In this case, query parameters sort, page, size, and countOnly are accepted.
POST: /<entity> - creates a new object for the given entity. The request accepts all fields for the entity. The response contains the created entity with ID. Field values in the response may differ from the request if the backend uses some defaults and validations.
GET: /<entity>/{id} - reads a single object for the given entity. The response data may contain more values (including nested objects) than the responses returning a list of objects.
PATCH: /<entity>/{id} - modifies a single object for the given entity. All request fields are optional; only values present in the request are replaced. To set an empty value for some attribute, null can be passed. The response contains the updated entity with ID.
DELETE: /<entity>/{id} - deletes a single object for the given entity. No request body is required. The operation returns HTTP status 204 (NO-CONTENT) in case of successful deletion.
GET: /<entity>/filter - returns a list of allowed filter fields with possible values for these fields.
POST: /<entity>/filter - reads a list of objects for the given entity filtered by provided criteria. The request body has the following structure:
{
"paged": {
"page": 0, // page number
"size": 20, // page size,
"countOnly": false // flag showing that only count is needed, not the real data
},
"sorted": {
"fields": [
// array of fields with sorting direction
]
},
"filter": {
// filter fields and conditions are here
}
}
Talent API utilizes a Bearer JSON Web Token (JWT) authentication mechanism and alternatively API-Keys to secure access to its resources and services. The JWTs and API-Keys are tied to and only grant permissions for accessing functionality of a specific customer.
If both JWT and API-Key authentication is provided on API requests, only the API-Key authentication gets evaluated.
Below, you can find code examples that support the described authentication flow.
package com.cobrainer.authexample;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.RestTemplate;
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.services.cognitoidentityprovider.CognitoIdentityProviderClient;
import software.amazon.awssdk.services.cognitoidentityprovider.model.*;
import java.time.LocalDateTime;
import java.util.Map;
public class TalentClient {
private final String clientId;
private final String userName;
private final String password;
private final CognitoIdentityProviderClient client;
private String token;
private String tokenType;
private LocalDateTime expiration;
private String refreshToken;
// client id assigned to the customer, username and password are required for authentication.
public TalentClient(String clientId, String userName, String password) {
this.client = CognitoIdentityProviderClient.builder().region(Region.EU_CENTRAL_1).build();
this.clientId = clientId;
this.userName = userName;
this.password = password;
setToken(initiateAuth());
}
// Example method demonstrating using token for GET requests.
public <T> T call(String uri, Class<T> clazz) {
RestTemplate template = new RestTemplate();
HttpEntity<String> entity = new HttpEntity<String>("parameters", authHeader());
// Using exchange to set headers with GET request.
ResponseEntity<T> response = template.exchange(uri, HttpMethod.GET, entity, clazz);
return response.getBody();
}
// Generate Authorization header for the request.
private HttpHeaders authHeader() {
if (expiration.isBefore(LocalDateTime.now())) {
// Refresh the token if it's expired.
refresh();
}
HttpHeaders headers = new HttpHeaders();
headers.add("Authorization", tokenType + " " + token);
return headers;
}
// Authenticate and obtain the token.
private AuthenticationResultType initiateAuth() {
InitiateAuthResponse authResponse = client.initiateAuth(
InitiateAuthRequest.builder()
.authFlow(AuthFlowType.USER_PASSWORD_AUTH)
.authParameters(Map.of("USERNAME", userName, "PASSWORD", password))
.clientId(clientId)
.build());
if (authResponse.challengeName() == ChallengeNameType.NEW_PASSWORD_REQUIRED) {
// For new user the password change may be requested.
return client.respondToAuthChallenge(
RespondToAuthChallengeRequest.builder()
.clientId(clientId)
.challengeName(authResponse.challengeName())
.session(authResponse.session())
.challengeResponses(Map.of("USERNAME", userName, "NEW_PASSWORD", password))
.build()).authenticationResult();
} else {
// Processing of other challenges maybe required if they set for user pool. Skipping it in this example.
return authResponse.authenticationResult();
}
}
// Refresh ID token based on refreshToken.
private void refresh() {
setToken(client.initiateAuth(InitiateAuthRequest.builder()
.authFlow(AuthFlowType.REFRESH_TOKEN_AUTH)
.authParameters(Map.of("REFRESH_TOKEN", refreshToken))
.clientId(clientId)
.build()).authenticationResult());
}
private void setToken(AuthenticationResultType authResult) {
token = authResult.idToken();
tokenType = authResult.tokenType();
expiration = LocalDateTime.now().plusSeconds(authResult.expiresIn());
refreshToken = authResult.refreshToken();
}
}
import datetime as dt
import boto3
import requests
from requests.auth import AuthBase
class AWSTenantAuthV2(AuthBase):
_session_info = {
"expiration_date": "",
"token_type": "",
"id_token": "",
"refresh_token": ""
}
# client id assigned to the customer, username and password are required for authentication.
def __init__(self, client_id, username, password):
self._username = username
self._password = password
self._client_id = client_id
self._client = boto3.client("cognito-idp", "eu-central-1")
self._start_session()
# Example method demonstrating using token for requests.
def __call__(self, req: requests.Request, *args, **kwargs):
if self._session_info["expiration_date"] < dt.datetime.now():
self._refresh_id_token()
req.headers["Authorization"] = f"{self._session_info['token_type']} {self._session_info['id_token']}"
# Authenticate and obtain the token.
def _start_session(self):
response = self._client.initiate_auth(
AuthFlow="USER_PASSWORD_AUTH",
AuthParameters={
"USERNAME": self._username,
"PASSWORD": self._password,
},
ClientId=self._client_id
)
self._session_info = {
"expiration_date": dt.datetime.now() + dt.timedelta(0, response["AuthenticationResult"]["ExpiresIn"]),
"id_token": response["AuthenticationResult"]["IdToken"],
"token_type": response["AuthenticationResult"]["TokenType"],
"refresh_token": response["AuthenticationResult"]["RefreshToken"]
}
# Refresh ID token based on refreshToken.
def _refresh_id_token(self):
response = self._client.initiate_auth(
AuthFlow="REFRESH_TOKEN_AUTH",
AuthParameters={
"REFRESH_TOKEN": self._session_info["refresh_token"]
},
ClientId=self._client_id
)
self._session_info.update({
"expiration_date": dt.datetime.now() + dt.timedelta(0, response["AuthenticationResult"]["ExpiresIn"]),
"id_token": response["AuthenticationResult"]["IdToken"],
"token_type": response["AuthenticationResult"]["TokenType"]
})
X-API-Key on every request, e.g. the full HTTP header would look like X-API-Key: cb-ab12cd34ef56.... If the API-Key is invalid, expired or disabled, an appropriate status code 401 response is returned.Below, you can find code examples that support the described API-Key authentication.
package com.cobrainer.authexample;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.RestTemplate;
import java.time.LocalDateTime;
import java.util.Map;
public class TalentClient {
private final String apiKey;
// apiKey must be propagated to the client from a secure location. Never hard-code API-Keys!
public TalentClient(String apiKey) {
this.apiKey = apiKey;
}
// Example method demonstrating using token for GET requests.
public <T> T call(String uri, Class<T> clazz) {
RestTemplate template = new RestTemplate();
HttpEntity<String> entity = new HttpEntity<String>("parameters", apiKeyHeader());
// Using exchange to set headers with GET request.
ResponseEntity<T> response = template.exchange(uri, HttpMethod.GET, entity, clazz);
return response.getBody();
}
// Generate X-API-Key header for the request.
private HttpHeaders apiKeyHeader() {
HttpHeaders headers = new HttpHeaders();
headers.add("X-API-Key", apiKey);
return headers;
}
}
The Talent API incorporates a range of key features that enhance the application's functionality and usability. These key features have been thoughtfully integrated into the API, ensuring a comprehensive talent management solution that caters to our users' distinct requirements. The following features are at the core of the Talent API, providing an exceptional user experience and empowering seamless talent management processes.
The Skills API offers various capabilities to cater to your skill-related needs. With this API, you can conduct skill searches using specific criteria, accurately detect skills from textual content, and seamlessly retrieve skills-related information. At the heart of the skill API lies a skill data model that governs how skills are represented within the system. This comprehensive data model comprises various essential attributes, including:
| Attributes | Description |
|---|---|
| ID | Unique identifier associated with a specific skill. |
| Name | Name of the Skill |
| Type | Type of the Skill (hard, soft, and language) |
This comprehensive documentation is a valuable resource, providing detailed insights into the purpose and functionality of endpoints within the Skills API.
You can use the GET /skills endpoint to explore and find specific skills. This endpoint allows you to search by incorporating the following parameters within the request:
searchTerm : This parameter enables you to filter skills based on a specific search term of your choice. It helps narrow down the results to match your desired criteria.
limit: By including this parameter, you can specify the maximum number of skills you wish to retrieve. It allows you to control the number of skills returned to the search results.
type: This parameter allows you to refine your search further by specifying the skills you want to retrieve. For instance, you can select from hard, soft, and language skills categories, tailoring the search to your specific requirements.
If you need to identify skills from different types of textual content, such as CVs, job descriptions, or any other document type, you can use the POST /skills/detection endpoint. This robust endpoint provides the ability to detect skills by leveraging a range of parameters, including:
Skills Limit: By setting a skills limit parameter by type, you can control the maximum number of skills to be detected. This ensures that the skill detection process returns a manageable number of results that meet your requirements.
Document Type: The endpoint also enables you to customize the skill detection based on the type of document being analyzed. Whether it's a CV, job description, or any other type of textual content, considering the document type helps tailor the skill detection process to the specific context and needs of the document.
Our API provides multiple endpoints to facilitate access to skill-related information. You can utilize the GET /skills/{skillId} endpoint to obtain details about a specific skill. This endpoint will return essential information about the skill you specify.
If you require comprehensive details about a skill, including all its details and related skills, you can use the GET /skills/{skillId}/details endpoint. This endpoint provides a comprehensive overview of the skill, ensuring you have access to all the relevant information.
You can use the GET /skills/{skillId}/jobs endpoint to determine which jobs in your system require a specific skill. This endpoint allows you to retrieve a list of jobs that necessitate the particular skill you specify.
In cases where you require information about a group of skills rather than a single skill, you can employ the GET /skills/info endpoint. This endpoint enables you to retrieve comprehensive information about multiple skills simultaneously, streamlining the process of obtaining a holistic understanding of various skills.
You can utilize the POST /skills/related endpoint to find related skills to a particular skill. This endpoint facilitates the identification of skills that are closely associated with the skill you specify.
The Users API provides a comprehensive set of functionalities for managing user information and data within the application.With this API, users can create, retrieve, update, delete, and filter user data to streamline user management processes. This documentation aims to provide developers with a detailed understanding of the User data model, its lifecycle, and the available endpoints for interacting with user information.
At the core of the Users API is the User data model, which serves as a structured representation of user information within the application. The User data model encompasses various attributes and fields that store essential information related to each user.
Here is an overview of the attributes included in our User data model:
| Attributes | Description |
|---|---|
| ID | Unique identifier associated with a specific User. |
| externalId | To store the ID of a User from different system. |
| firstName | User first name. |
| lastName | User last name. |
| aboutMe | A brief description or biography of the user. |
| jobTitle | Current job title of the user. |
| department | Department where the user is employed. |
| location | Location of the user. |
| emailAddress | User email address. |
| phoneNumber | User contact phone number. |
| seniorityLevel | Seniority level of the user(0-6). |
| relocationPreference | User preference for relocation("not open". "open", "relocation only"). |
| jobSeeking | Indicates if the user is currently seeking a job("not open", "open"). |
| roles | Indicates the roles of the user |
The Users use-case lifecycle encompasses multiple stages, starting from creation and extending to deletion and filtering. This comprehensive overview will outline the distinct stages that constitute the user lifecycle.
The initial stage of the user lifecycle involves the creation of a new user. This can be accomplished by utilizing the POST /users endpoint, which allows for the creation of users by providing the necessary attributes from the user data model. While it is not obligatory to populate all attributes, there are a couple of mandatory fields that must be included when creating a user. These include firstName and lastName.
If there is limited information available about the user at the time of creation, users have the option to set some attributes as default values. This allows for the creation of a preliminary user profile, which can be further refined and supplemented with additional details later.
After a user has been successfully created, it becomes possible to retrieve the specific user by utilizing its userId. To retrieve a particular user, make use of the GET /users/{userId} endpoint. In the endpoint URL, substitute the placeholder {userId} with the actual user ID assigned during creation. This will allow you to access the detailed information and attributes associated with that specific user.
However, in the event that you do not have the user ID readily available, there is an alternative approach. By employing the GET /users endpoint, it is possible to retrieve a comprehensive list of all users present within the system. This endpoint provides an overview of all users, enabling you to browse through the available options and locate the desired user if the specific user ID is unknown.
As users progress, it is often necessary to make updates to different fields associated with them. To facilitate these updates, the API offers the PATCH /users/{userId} endpoint, which allows for the modification of specific user attributes.
When utilizing the PATCH /users/{userId} endpoint, it is important to include the userId in the endpoint URL to specify the exact user that requires updating. Additionally, provide the updated fields within the request to reflect the desired changes. It is worth noting that all attributes are optional for updating, meaning that you can choose to modify one or more specific fields without the need to update every attribute.
Once a user's profile is no longer needed or should be removed, you have the option to delete it from the system. To achieve this, the API provides the DELETE /users/{userId} endpoint specifically designed for deleting users.
By utilizing the DELETE /users/{userId} endpoint, you can initiate the deletion process for a specific user. To indicate which user should be deleted, substitute the {userId} placeholder in the endpoint URL with the actual ID of the user you wish to remove.
Deleting a user through this endpoint permanently removes the user from the system, including all associated data and attributes. It is important to exercise caution when using this endpoint, as deleted users cannot be recovered. Therefore, it is recommended to ensure that the user truly needs to be deleted before invoking this endpoint.
The API offers a comprehensive user filtering feature, allowing you to refine your user search based on specific criteria. To explore the available filtering options, you can utilize the GET /users/filter endpoint, which provides a detailed list of fields that can be used to filter users. This endpoint returns a comprehensive set of filterable fields, enabling you to fine-tune your search based on desired attributes.
Once you have identified the relevant filter criteria, you can proceed to retrieve users that match those filters. The POST /users/filter endpoint serves this purpose, allowing you to submit your filter criteria within the request body. By specifying the desired filters in the request, the endpoint will return a list of users that align with your specified criteria.
With the combination of the GET /users/filter and POST /users/filter endpoints, you can efficiently navigate and retrieve users that meet your specific requirements.
This section provides a guide to managing user skills. It covers adding and updating hard and soft skills, retrieving hard and soft skills, adding language skills, and retrieving language skills. It emphasizes using specific endpoints for each task and the importance of effective skill management.
After a user has been successfully created, you can add or update hard and soft skills for that user by utilizing their user ID. To manage skills for a particular user, use the POST /users/{userId}/hard-soft-skills endpoint. Substitute the placeholder {userId} in the endpoint URL with the assigned user ID. This endpoint allows you to add a new list of skills, overriding a user's existing skills. Along with the skillId, you can also specify the level to describe the user's proficiency in each skill.
The GET /users/{userId}/hard-soft-skills endpoint is your go-to for a comprehensive understanding of a user's hard and soft skills. This endpoint provides detailed information about the user's hard and soft skills, including the skill id, skill name, skill type, and proficiency level. This information lets you to deeply understand the user's competencies and strengths.
Adding language skills to a user profile is as simple as adding hard-soft skills. Like before, you can use the POST /users/{userId}/languages endpoint. This endpoint allows you to add a new list of language skills, overriding a user's existing skills. Just like hard-soft skills, you can specify the level to describe the user's proficiency in each language. The process is straightforward and familiar, making managing a user's language skills easy.
You can utilize the GET /users/{userId}/languages endpoint to fetch comprehensive details about a particular user's language skills. This includes the skill ID, name, type, and proficiency level associated with each language skill.
The Jobs API provides a comprehensive set of functionalities for users to effectively manage job postings within the application. With this API, users can create, retrieve, update, delete, and filter job postings to streamline their job management processes. This documentation aims to provide developers with a detailed understanding of the Job data model, its lifecycle, and the available endpoints for interacting with job postings.
At the core of the Jobs API is the Job data model, which serves as a structured representation of job postings within the application. The Job data model encompasses various attributes and fields that store essential information related to each job posting.
Here is an overview of the attributes included in our Job data model:
| Attributes | Description |
|---|---|
| ID | Unique identifier associated with a specific job. |
| externalId | To store the ID of a job from a different system. |
| translations | Contains title and description for the job in various languages. |
| creator | User who created the job. |
| owner | User who is the primary contact for the job. |
| hiringManager | Assigned hiring manager for the job. |
| duration | Specifies whether the job is "permanent" or "fixed-term". |
| locations | An array of location IDs where the job is located. |
| workPlace | Indicates whether the job is "remote" or "on-site". |
| startDate | Start date of the job. |
| applicationUrl | URL of the job application. |
| state | Indicates the current state of the job (draft, published, hired, or archived). |
| seniorityLevel | Seniority level of the job. |
| skills | An array of skills (id and level) required for the job. |
| updatedAt | Time when the job was last updated. |
| publishedAt | Time when the job was published. |
The Job lifecycle encompasses multiple stages, starting from creation and extending to deletion and filtering. This comprehensive overview will outline the distinct stages that constitute the job lifecycle.
The initial stage of the job lifecycle involves the creation of a new job. This can be accomplished by utilizing the POST /jobs endpoint, which allows for the creation of jobs by providing the necessary attributes from the job data model. While it is not obligatory to populate all attributes, there are several mandatory fields that must be included when creating a job. These include translations, location, workplace, state, and seniority level.
If there is limited information available about the job at the time of creation, users have the option to set the job's state to "Draft" using the state attribute. This allows for the creation of a preliminary job posting, which can be further refined and supplemented with additional details before transitioning to the "Published" state.
After a job has been successfully created, it becomes possible to retrieve the specific job by utilizing its jobId. To retrieve a particular job, make use of the GET /jobs/{jobId} endpoint. In the endpoint URL, substitute the placeholder {jobId} with the actual job ID assigned during creation. This will allow you to access the detailed information and attributes associated with that specific job.
However, in the event that you do not have the job ID readily available, there is an alternative approach. By employing the GET /jobs endpoint, it is possible to retrieve a comprehensive list of all jobs present within the system. This endpoint provides an overview of all jobs, enabling you to browse through the available options and locate the desired job if the specific job ID is unknown.
As jobs evolve and progress, it is often necessary to make updates to different fields associated with them. To facilitate these updates, the API offers the PATCH /jobs/{jobId} endpoint, which allows for the modification of specific job attributes.
When utilizing the PATCH /jobs/{jobId} endpoint, it is important to include the jobId in the endpoint URL to specify the exact job that requires updating. Additionally, provide the updated fields within the request to reflect the desired changes. It is worth noting that all attributes are optional for updating, meaning that you can choose to modify one or more specific fields without the need to update every attribute.
However, there are certain attributes that cannot be set to null during the update process. These attributes include translations, locations, workPlace, state, seniority level, and skills. It is crucial to ensure that these attributes are provided with valid values and not left empty or null.
Once the hiring process for a job is complete or when there is no longer a need for a job posting, you have the option to remove it from the system. To achieve this, the API provides the DELETE /jobs/{jobId} endpoint specifically designed for deleting jobs.
By utilizing the DELETE /jobs/{jobId} endpoint, you can initiate the deletion process for a specific job. To indicate which job should be deleted, substitute the {jobId} placeholder in the endpoint URL with the actual ID of the job you wish to remove.
Deleting a job through this endpoint permanently removes the job from the system, including all associated data and attributes. It is important to exercise caution when using this endpoint, as deleted jobs cannot be recovered. Therefore, it is recommended to ensure that the job truly needs to be deleted before invoking this endpoint.
The API offers a comprehensive job filtering feature, allowing you to refine your job search based on specific criteria. To explore the available filtering options, you can utilize the GET /jobs/filter endpoint, which provides a detailed list of fields that can be used to filter jobs. This endpoint returns a comprehensive set of filterable fields, enabling you to fine-tune your search based on desired attributes.
Once you have identified the relevant filter criteria, you can proceed to retrieve jobs that match those filters. The POST /jobs/filter endpoint serves this purpose, allowing you to submit your filter criteria within the request body. By specifying the desired filters in the request, the endpoint will return a list of jobs that align with your specified criteria.
With the combination of the GET /jobs/filter and POST /jobs/filter endpoints, you can efficiently navigate and retrieve jobs that meet your specific requirements.
In addition to its robust filtering capabilities, the Jobs API presents a seamless and highly efficient solution for generating comprehensive job descriptions using a job title. This feature is accomplished by harnessing the advanced capabilities of the OpenAI.
At the core of the Jobs API, the POST /jobs/generation endpoint serves as a remarkable tool for recruiters, empowering them to effortlessly create detailed job descriptions. Leveraging this endpoint, recruiters can input the job title and rely on the APIs sophisticated mechanisms to automatically generate comprehensive and accurate job descriptions.
The Shortlist feature allows recruiters to manage a list of candidates who have been shortlisted for a specific job. This feature helps in organizing and tracking potential candidates for a job role, making the recruitment process more efficient.
To get the current list of candidates who have been shortlisted for a specific job, use the GET /jobs/{jobId}/shortlist endpoint. This endpoint helps recruiters view the list of candidates who have been identified as potential fits for the job role, facilitating better tracking and management of the recruitment process.
To update the list of shortlisted candidates for a specific job, use the PATCH /jobs/{jobId}/shortlist endpoint. This endpoint provides flexibility in managing the shortlist by allowing recruiters to update the list of potential candidates dynamically, ensuring that the most suitable candidates are considered for the role.
To delete one or more candidates from the shortlist for a specific job, use the DELETE /jobs/{jobId}/shortlist endpoint. This endpoint allows recruiters to clean up the shortlist by removing candidates who are no longer being considered for the job, ensuring that only relevant candidates remain in the list.
To add notes to a specific candidate in the shortlist for a particular job, use the PATCH /jobs/{jobId}/shortlist endpoint with the candidateID query parameter. This endpoint helps recruiters keep detailed records of their observations and interactions with candidates, making it easier to review and decide on the suitability of each candidate during the recruitment process.
At the core of our job management system are the Job Profiles, the most detailed and specific component within an organization's job structure. Job Profiles precisely define the responsibilities, duties, required skills, and knowledge for particular positions. By providing detailed classifications, Job Profiles ensure clarity and consistency in role expectations, facilitating targeted recruitment, performance evaluation, and professional development within the organization. This documentation aims to provide developers with a comprehensive understanding of Job Profiles, their attributes, and the available endpoints for interacting with them.
Here is an overview of the attributes included in our Job profile data model:
| Attributes | Description |
|---|---|
| ID | Unique identifier associated with a specific job profile. |
| externalId | To store the ID of a job profile from a different system. |
| translations | Contains title and description for the job profile in various languages. |
| creator | User who created the job profile. |
| owner | User who is the primary contact for the job profile. |
| state | Indicates the current state of the job profile (draft, active, or archived). |
| skills | An array of skills (id and level) required for the job profile. |
| updatedAt | Time when the job profile was last updated. |
To start the job profile lifecycle, you need to create a new job profile. You can do this by using the POST /job-profiles endpoint. This endpoint allows you to create job profiles by providing the required attributes from the job profile data model. While it's not mandatory to fill in all the attributes, you must include certain essential fields when creating a job profile, such as state and translations.
If you have limited information about the job profile when creating it, you can set the profile's state to "draft" using the state attribute. This will allow the creation of a preliminary job profile, which can be refined and updated with more details before changing its state to "Active."
Once you have successfully created a job profile, you can retrieve the specific profile by using its ID. Use the GET /job-profiles/{jobProfileId} endpoint to retrieve a particular job profile. In the endpoint URL, replace {jobProfileId} with the actual ID assigned during creation. This will allow you to access detailed information and attributes associated with that specific job profile, providing a comprehensive understanding of its characteristics.
If the profile ID is not readily available, there is an alternative approach. You can retrieve a comprehensive list of all job profiles present within the system by using the GET /job-profiles endpoint. This endpoint provides an overview of all profiles, allowing you to browse the options and locate the desired profile if the specific profile ID is unknown.
As job profiles evolve and progress, the need to update different associated fields arises. The API offers the flexible PATCH /job-profiles/{jobProfileId} endpoint to empower you with control over these updates. This endpoint allows you to make specific modifications to job profile attributes, without the need to update every attribute. When utilizing the PATCH /job-profiles/{jobProfileId} endpoint, it is essential to include the profileId in the endpoint URL to specify the exact job profile that requires updating. Additionally, provide the updated fields within the request to reflect the desired changes. It is worth noting that all attributes are optional for updating, meaning that you can modify one or more specific fields without updating every attribute.
However, specific attributes cannot be null during the update process. These attributes include state and translations. It is crucial to ensure these attributes are met.
When a job profile is no longer needed or should be removed from the system, you can delete it using the API. The API provides the DELETE /job-profiles/{jobProfileId} endpoint, specifically designed for this purpose. This endpoint will delete the job profile and all associated data and attributes from the system. It's crucial to be cautious when using this endpoint, as deleted profiles cannot be recovered. Therefore, ensuring that the profile truly needs to be deleted before using this endpoint is essential.
The API offers a comprehensive job profile filtering feature, allowing you to refine your job profile search based on specific criteria. To explore the available filtering options, you can utilize the GET /job-profiles/filter endpoint, which provides a detailed list of fields that can be used to filter job profiles. This endpoint returns a comprehensive set of filterable fields, enabling you to fine-tune your search based on desired attributes.
Once you have identified the relevant filter criteria, you can retrieve job profiles matching those filters. The POST /job-profiles/filter endpoint allows you to submit your filter criteria within the request body. By specifying the desired filters in the request, the endpoint will return a list of job profiles that align with your criteria.
With the combination of the GET /job-profiles/filter and POST /job-profiles/filter endpoints, you can efficiently navigate and retrieve job profiles that meet your specific requirements.
User Recommendations leverage user skills and job requirements to identify suitable job opportunities for users. This feature allows for a more targeted job search process by matching users to jobs based on their skill sets and recommending relevant job openings. This documentation aims to provide developers with a comprehensive understanding of User Recommendations and the available endpoints for interacting with them.
To identify potential job opportunities that are a good fit for a user based on their skill sets, use the GET /users/{userId}/jobs endpoint. This functionality supports the job search process by providing a curated list of job openings, making it easier for users to find roles that match their qualifications and career aspirations.
To get detailed information on the matching skills, missing skills, and the overall matching score between the user and the job, use the GET /users/{userId}/jobs/{jobId}/matching endpoint. It helps in evaluating how well a user's skills align with the job requirements, identifying areas for improvement, and making informed decisions in the job application process.
Job Recommendations leverage job and user skills to identify suitable job candidates. This feature allows for a more targeted recruitment process by matching users to jobs based on their skill sets and recommending upskilling where necessary. This documentation aims to provide developers with a comprehensive understanding of Job Recommendations and the available endpoints for interacting with them.
To identify potential candidates who are a good fit for the job based on their skill sets, use the GET /jobs/{jobId}/candidates endpoint. This functionality supports the recruitment process by providing a curated list of candidates, making it easier to find the right person for the role.
To get detailed information about the specified candidate, such as their skills, experience, and any other relevant attributes, use the GET /jobs/{jobId}/candidates/{candidateId} endpoint. This detailed view helps recruiters and managers understand a candidate's qualifications and suitability for the job.
To get a list of learning opportunities that can help a candidate address missing skills for a job, use the GET /jobs/{jobId}/candidates/{candidateId}/learning-opportunities endpoint. This endpoint identifies gaps in the candidate's skills and provides relevant learning opportunities to fill those gaps.
To get detailed information on the matching skills, missing skills, and the overall matching score between the candidate and the job, use the GET /jobs/{jobId}/candidates/{candidateId}/matching endpoint. It helps in evaluating how well a candidate's skills align with the job requirements, identifying areas for improvement, and making informed decisions in the recruitment process.
The API also offers candidate filtering feature, allowing you to refine your recommended candidate list based on specific criteria. To explore the available filtering options, you can utilize the GET /jobs/{jobId}/candidates/filter endpoint, which provides a detailed list of fields that can be used to filter candidates.
Once you have identified the relevant filter criteria, you can proceed to retrieve candidates that match those filters. The POST /jobs/{jobId}/candidates/filter endpoint serves this purpose, allowing you to submit your filter criteria within the request body. By specifying the desired filters in the request, the endpoint will return a list of candidates that align with your specified criteria.
The Upskilling section is designed to manage learning opportunities within the organization. It offers various functions for creating, retrieving, updating, deleting, filtering, and recommending learning opportunities. Additionally, users can be assigned learning opportunities to support their professional development.
Learning Opportunities form a crucial part of our job management system, providing a structured approach for employees to enhance their skills and knowledge. These opportunities can include courses, books and other educational activities. This documentation aims to provide developers with a comprehensive understanding of Learning Opportunities, their attributes, and the available endpoints for interacting with them.
Here is an overview of the attributes included in our Learning Opportunity data model:
| Attributes | Description |
|---|---|
| ID | Unique identifier associated with a specific learning opportunity. |
| externalId | To store the ID of a learning opportunity from a different system. |
| translations | Contains title and description for the learning opportunity in various languages. |
| type | Indicates what type of learning opportunity (course). |
| ownerName | User who created the learning opportunity. |
| state | Indicates the current state of the learning opportunity (draft, published, or archived). |
| url | To store the url address of the learning opportunity |
| learningLanguage | To store in which language the learning opportunity is in. |
| provider | To store who is the provider of the learning opportunity. |
| skills | An array of skills at are associated with the learning opportunity. |
| createdAt | Time when the learning opportunity is created. |
| updatedAt | Time when the learning opportunity was last updated. |
You need to create a new learning opportunity to initiate the learning opportunity lifecycle. You can do this by using the POST /learning-opportunities endpoint. This endpoint allows you to create learning opportunities by providing the required attributes from the learning opportunity data model. While filling in all the attributes is not mandatory, you must include specific essential fields when creating a learning opportunity, such as title, translations, state, and skills.
When creating the learning opportunity, you can set the profile's state to "draft" using the state attribute if you have limited information about it. This will allow a preliminary learning opportunity to be refined and updated with more details before changing its state to "Active."
Once you have successfully created a learning opportunity, you can retrieve the specific opportunity by using its ID. Use the GET /learning-opportunities/{learningOpportunityId} endpoint to retrieve a particular learning opportunity. In the endpoint URL, replace {learningOpportunityId} with the ID assigned during creation. This will allow you to access detailed information and attributes associated with that specific learning opportunity, providing a comprehensive understanding of its characteristics.
If the opportunity ID is not readily available, there is an alternative approach. You can retrieve a comprehensive list of all learning opportunities present within the system by using the GET /learning-opportunities endpoint. This endpoint provides an overview of all opportunities, giving you the flexibility to browse the options and locate the desired opportunity if the specific opportunity ID is unknown.
As learning opportunities evolve and progress, the need to update different associated fields arises. The API offers the flexible PATCH /learning-opportunities/{learningOpportunityId} endpoint to empower you with control over these updates. This endpoint allows you to make specific modifications to learning opportunity attributes without the need to update every attribute. When utilizing this endpoint, it is essential to include the opportunityId in the endpoint URL to specify the exact learning opportunity that requires updating.
Additionally, provide the updated fields within the request to reflect the desired changes. It is worth noting that all attributes are optional for updating, meaning that you can modify one or more specific fields without updating every attribute. However, specific attributes cannot be null during the update process. These attributes include translations, type, state, and skills, and it is crucial to ensure they are met.
When a learning opportunity is no longer needed or should be removed from the system, you can delete it using the API. The API provides the DELETE /learning-opportunities/{learningOpportunityId} endpoint, specifically designed for this purpose. This endpoint will delete the learning opportunity and all associated data and attributes from the system. It's crucial to be cautious when using this endpoint, as deleted opportunities cannot be recovered. Therefore, it is essential to delete the opportunity before using this endpoint.
The API offers a comprehensive learning opportunity filtering feature, allowing you to refine your learning opportunity search based on specific criteria. To explore the available filtering options, you can utilize the GET /learning-opportunities/filter endpoint, which provides a detailed list of fields that can be used to filter learning opportunities. This endpoint returns a comprehensive set of filterable fields, enabling you to fine-tune your search based on desired attributes.
Once you have identified the relevant filter criteria, you can retrieve learning opportunities matching those filters. The POST /learning-opportunities/filter endpoint allows you to submit your filter criteria within the request body. By specifying the desired filters in the request, the endpoint will return a list of learning opportunities that align with your criteria.
With the combination of the GET /learning-opportunities/filter and POST /learning-opportunities/filter endpoints, you can efficiently navigate and retrieve learning opportunities that meet your specific requirements.
Learning Opportunity Recommendations are designed to help users find relevant learning opportunities based on specific skills they wish to develop. This feature leverages the skillId to provide tailored recommendations, ensuring users can easily discover opportunities that align with their professional development goals.
To get personalized learning opportunity recommendations based on a specific skill, use the GET /learning-opportunities/recommendations endpoint. This endpoint requires the skillId as a query parameter to generate relevant recommendations.
Featured Opportunities are specially highlighted learning opportunities assigned to specific users to promote their professional growth. These opportunities are curated based on the user’s role, skills, and career aspirations. This documentation aims to provide developers with a comprehensive understanding of Featured Opportunities, their attributes, and the available endpoints for interacting with them.
To assign a learning opportunity to a user as a featured opportunity, you can do this by using the POST /featured-opportunities/{learningOpportunityId} endpoint. This endpoint allows you to assign learning opportunities to multiple users simultaneously.
Once you assign a featured opportunity to users, you can retrieve the specific user's list using the learningOpportunityID. Use the GET /featured-opportunities/{learningOpportunityID} endpoint to get a particular user list. In the endpoint URL, replace {learningOpportunityID} with the ID assigned during creation. This will allow you to access detailed information which includes user ID, featured at what time, and who assigned it to the user.
When a featured opportunity is no longer needed or should be removed for a user, you can delete it using the DELETE /featured-opportunities/{learningOpportunity} endpoint. This endpoint will remove the featured opportunity and all associated data assigned to a user. It's crucial to be cautious when using this endpoint, as removed featured opportunities cannot be recovered. Therefore, ensuring that the user's opportunity is removed before using this endpoint is essential.
On the other hand, if a user wants to know which learning opportunities are assigned to them, they can utilize the GET /users/{userId}/featured-opportunities endpoint. By replacing the userId in the endpoint URL, this endpoint will provide a comprehensive list of all learning opportunities assigned to that particular user, including who assigned it to them and at what time.
The Job Architecture API gives you programmatic access to your organization's job structure. A job architecture organizes work into a five-level hierarchy, with each element carrying multilingual titles and descriptions:
| Element | Description |
|---|---|
| Architecture | The top-level container, typically representing an organization or business unit. |
| Job Family | A broad grouping of related work, e.g. "Engineering". |
| Job Cluster | A subdivision of a family grouping closely related roles, e.g. "Software Development". |
| Job Role | A concrete role, e.g. "Backend Engineer", carrying a job profile with content and skills. |
| Job Level | A seniority variant of a role, e.g. "Senior Backend Engineer", with its own job profile. |
Use GET /job-architectures to list architectures and POST /job-architectures to create one. Each element type has standard read, create, update, and delete operations, for example GET /job-architectures/{jobArchitectureId}/families, POST /job-architectures/{jobArchitectureId}/families, and PATCH /job-architectures/{jobArchitectureId}/families/{jobFamilyId}. Clusters follow the same pattern below families, and roles and levels are managed via /job-architectures/{jobArchitectureId}/roles/{jobRoleId} and /job-architectures/{jobArchitectureId}/levels/{jobLevelId}.
For integrations that synchronize a job architecture from an external system of record (for example SAP SuccessFactors Talent Intelligence Hub), families and clusters can be created with pre-defined identifiers using PUT /job-architectures/{jobArchitectureId}/families/{jobFamilyId} and PUT /job-architectures/{jobArchitectureId}/families/{jobFamilyId}/clusters/{jobClusterId}, which makes the synchronization idempotent.
Every role and level carries a job profile: structured content sections plus the skills detected in that content. Use GET /job-profiles to list profiles, GET /job-profiles/{jobProfileId} to read one, and PATCH /job-profiles/{jobProfileId} to update content. After editing content you can re-run skill detection with POST /job-profiles/{jobProfileId}/detect-skills.
GET /job-architectures/{jobArchitectureId}/search finds elements matching a text pattern within one architecture. For structured queries, POST /job-architectures/filter filters items across all architectures and POST /job-architectures/{jobArchitectureId}/filter within one; the corresponding GET .../filter endpoints list the available filter fields and values.
Roles and levels are versioned: GET .../roles/{jobRoleId}/versions lists the history and GET .../roles/{jobRoleId}/versions/{version} returns a specific version (levels analogously). A review workflow lets you assign a reviewer to a job profile (POST /job-profiles/{jobProfileId}/reviewer, with search, update, and removal endpoints alongside) and discuss changes through comments on architecture items via /job-architectures/{jobArchitectureId}/items/{itemId}/comments, including replies and thread resolution.
Instead of deleting, roles and levels can be archived and unarchived — individually (POST .../roles/{jobRoleId}/archive) or in bulk (POST .../roles/archive). Archived elements are hidden from active views but remain recoverable, which makes archiving the safe default for lifecycle management.
POST /job-architectures/{jobArchitectureId}/generate generates job architecture entities in batch for an architecture, controlled by the type query parameter. Generation runs asynchronously when deferred: the endpoint responds with 202 Accepted if the task was scheduled and 200 OK if it executed immediately.
Career tracks group levels across roles into progression paths. Manage them with the CRUD endpoints under /job-architectures/{jobArchitectureId}/career-tracks.
The job profile template controls the structure of generated job profiles in an architecture. Read the current template with GET /job-architecture/{jsaId}/job-profile-templates, and set or remove it with PUT and DELETE on /job-architecture/{jsaId}/job-profile-templates/{templateId}.
In addition to the REST API, Cobrainer exposes the Job Architecture to AI agents through the Model Context Protocol (MCP). MCP lets tools like Claude Code, Codex, Cursor, and Microsoft Copilot read and edit your job architecture conversationally, with the same tenant isolation and permission checks as the REST API.
Cobrainer provides four MCP servers, scoped by capability. Each is a stateless HTTP endpoint on the API host:
| Server | Endpoint | Required permission |
|---|---|---|
| Knowledge Base (read) | https://api.be.cobrainer.cloud/mcp/knowledge-base-read |
CAN_READ_KNOWLEDGE_BASE |
| Job Architecture read | https://api.be.cobrainer.cloud/mcp/ja-read |
CAN_READ_JOB_ARCHITECTURE |
| Architect (write) | https://api.be.cobrainer.cloud/mcp/ja-architect |
CAN_EDIT_JOB_ARCHITECTURE |
| Reviewer (write) | https://api.be.cobrainer.cloud/mcp/ja-reviewer |
CAN_REVIEW_JOB_PROFILES |
The complete, always-current tool catalog for every server — including each tool's input and output schema — is published on the MCP dashboard. A machine-friendly index of this whole documentation site is available at llms.txt.
MCP requests authenticate with an API key sent in the X-API-KEY header, exactly like REST API requests. The key must belong to a user or service with the permission required by the server you connect to (see table above). Contact our support team to obtain an API key with the appropriate permissions.
Replace <YOUR_API_KEY> and pick the server endpoint matching what the agent should be allowed to do. The examples use the read server; write access works the same way with the architect or reviewer endpoint.
claude mcp add --transport http cobrainer-ja https://api.be.cobrainer.cloud/mcp/ja-read \
--header "X-API-KEY: <YOUR_API_KEY>"
Add to ~/.codex/config.toml:
[mcp_servers.cobrainer-ja]
url = "https://api.be.cobrainer.cloud/mcp/ja-read"
http_headers = { "X-API-KEY" = "<YOUR_API_KEY>" }
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"cobrainer-ja": {
"url": "https://api.be.cobrainer.cloud/mcp/ja-read",
"headers": { "X-API-KEY": "<YOUR_API_KEY>" }
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"cobrainer-ja": {
"type": "http",
"url": "https://api.be.cobrainer.cloud/mcp/ja-read",
"headers": { "X-API-KEY": "<YOUR_API_KEY>" }
}
}
}
Use this guide to make Cobrainer capabilities available through a Microsoft 365 Copilot agent in Microsoft Teams, Microsoft Edge, and the Microsoft 365 Copilot web app.
Guide verified: 25 August 2026
Audience: Microsoft Copilot Studio makers and administrators
Microsoft updates Copilot Studio regularly. Labels and screen layouts may change after the verification date above.
Microsoft 365 Copilot surfaces access Cobrainer through an agent configured in Microsoft Copilot Studio. The agent is connected to the Cobrainer MCP server and published through the following channels:
Before starting, make sure you have:
Security: Use a dedicated, least-privileged API key. Never place the key in agent instructions, documentation, prompts, screenshots, source control, or chat messages.
Choose the server that matches the capabilities the agent should have:
| Capability | MCP server URL | API key scope |
|---|---|---|
| Read from the Knowledge Base | https://api.be.cobrainer.cloud/mcp/knowledge-base-read |
Viewer |
| Read Job Architecture data | https://api.be.cobrainer.cloud/mcp/ja-read |
Viewer |
| Edit Job Architecture data | https://api.be.cobrainer.cloud/mcp/ja-architect |
Job Architect |
| Review Job Architecture data | https://api.be.cobrainer.cloud/mcp/ja-reviewer |
Reviewer |
Create an API key with the scope required by the selected server:
The MCP server authenticates with an API key in the following HTTP header:
X-API-KEY: <YOUR_API_KEY>
Example instructions:
You are a Cobrainer assistant.
Use the available Cobrainer tools to help users with the capabilities provided
by the configured MCP server.
Always retrieve current information from Cobrainer before answering questions
about organizational data. Clearly state when requested information cannot be found.
Operate only within the actions exposed by the configured Cobrainer tools. Never
claim that an action succeeded unless the tool confirms it.
Keep responses concise and factual. Ask a clarifying question when the requested
Cobrainer data or requested action is ambiguous.
If the agent should answer only from Cobrainer, remove Search all websites from the Knowledge section.
| Field | Value |
|---|---|
| Server name | A short name describing the selected Cobrainer capability |
| Server description | A clear description of what the server lets the agent do and when it should be used |
| Server URL | The MCP server URL selected in step 1 |
| Authentication | API key |
| Parameter type | Header |
| Header name | X-API-KEY |
| Key value | Your Cobrainer API key |
Copilot Studio creates a Power Platform connector and then asks which connection the agent should use.
X-API-KEY field.Select Preview.
Start a new chat.
Ask a question that requires one of the selected server's capabilities. For the Job Architecture read server, for example:
What job roles are available in our organization?
Confirm that the response contains correct and current Cobrainer data.
Changes made after publication are not visible to users until you publish again.
The API has comprehensive error handling to provide clear and informative responses when issues occur. This section provides details for the error handling approach and explains how error responses are structured.
All endpoints in the API have error responses that provide detailed information about encountered issues. These responses are designed to help developers understand and resolve problems effectively. Error responses include the following elements:
Error responses are accompanied by appropriate HTTP status codes to indicate the nature of the error. Some of the status codes for error responses are:
Error responses contain a structured message that provides information about the issue. The message typically includes the following elements:
For more details about the specific error responses for each endpoint, please refer to the API Reference section. The API Reference provides comprehensive documentation for each endpoint, including the possible error scenarios, associated status codes, and detailed error messages.
To ensure fair usage and prevent abuse, rate limiting mechanisms have been implemented on the application endpoints. The following information outlines the specific rate limits that are enforced and describes how they are applied.
The application endpoints adhere to the following rate limits:
Each user ID is allowed to send a maximum of 500 requests per minute.
Once the limit of 500 requests per minute is reached, the user ID will be restricted to 50 requests per 10 minutes.
These rate limits serve to maintain a balanced and equitable usage of the API, preventing any individual user from overwhelming the system with excessive requests. By carefully controlling the rate at which requests are accepted, the API ensures a smooth and reliable experience for all users.
This section is dedicated to helping you resolve any issues or challenges you may encounter while working with the Talent API. Our support team is committed to providing timely assistance and ensuring a smooth experience throughout your integration process.
If you require support or have any questions regarding the Talent API, there are several ways to seek assistance:
Documentation: First and foremost, make sure to thoroughly review the API documentation. It contains comprehensive information about the APIs features, endpoints, request/response structures, and common use cases. Frequently, the documentation will answer many of your questions and provide guidance on proper API usage.
Report an incident: Email support@cobrainer.com. Please include any relevant error messages, request/response examples, and steps to reproduce the problem.
Report a vulnerability: Email security@cobrainer.com.
Data privacy requests: Email privacy@cobrainer.com.
Service status: Visit our public status page.
The API Reference section serves as a comprehensive guide, offering detailed information about the various endpoints available within the Talent API. Within this section, you will find distinct sections dedicated to jobs, skills, users, learning opportunities, and the job architecture, each providing an exhaustive list of endpoints specific to that area.
For every endpoint, the API reference provides in-depth details about the request and response structures, including any mandatory parameters that need to be supplied and the expected data formats for successful interaction with the API.
Returns the reviewer if exists else 404 not found
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}Sets job profile reviewer to the job profile, replacing existing reviewer
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
| id required | string <uuid> |
| state required | string Enum: "assigned" "approved" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}Removes the job profile reviewer of the job profile
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
trueUpdates a job profile review state of the job profile if current user is assignee
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
| state required | string Enum: "assigned" "approved" |
{- "state": "assigned"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}Returns the list of potential users matching the search term
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
| searchTerm required | string |
| limit | integer <int32> Default: 50 |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
]| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "filters": [
- {
- "field": "string",
- "type": "boolean",
- "values": [
- null
]
}
]
}required | object (com.cobrainer.common.model.Paged) |
com.cobrainer.api.common.model.Sorted (object) or null | |
com.cobrainer.api.common.model.FilterCom.cobrainer.api.users.model.User (any) or null |
Users having open job seeking status
{- "paged": {
- "page": 0,
- "size": 20
}, - "filter": {
- "op": "eq",
- "field": "jobSeeking",
- "value": "open"
}
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "John",
- "lastName": "Doe",
- "aboutMe": "This is an introduction to myself. I like writing API specs, a LOT. /s",
- "jobTitle": "Software Engineer",
- "department": "Marketing",
- "emailAddress": "john.deo@example.com",
- "phoneNumber": "+491234567890",
- "seniorityLevel": 0,
- "relocationPreference": "not open",
- "jobSeeking": "not open",
- "roles": [
- "string"
], - "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "externalId": "string",
- "authType": "sso"
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "method": {
- "version": "string",
- "horizon": "string",
- "share": {
- "property1": 0,
- "property2": 0
}, - "weight": {
- "property1": 0,
- "property2": 0
}, - "reviewDependent": [
- "NONE"
], - "exposureHigh": 0,
- "expertiseHigh": 0
}, - "item": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "exposure": 0,
- "expertise": 0,
- "reviewShare": 0,
- "coverage": 0,
- "taskCount": 0
}, - "path": {
- "family": "2093f2b3-1444-4818-ba2d-c059ebed9ae3",
- "cluster": "bb51ff79-79c8-4a7f-b7e6-d64a25f785b9",
- "role": "58f609aa-a5a0-4634-8a6f-363c9e5cdd30",
- "level": "01c39d13-13bf-42ee-9f8c-2b4407d5781d"
}, - "ancestorTitles": {
- "property1": "string",
- "property2": "string"
}, - "exposureLower": 0,
- "exposureUpper": 0,
- "exposureBandLower": 0,
- "exposureBandUpper": 0,
- "remainingByInvolvement": {
- "property1": 0,
- "property2": 0
}, - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "title": "string",
- "classification": "contribution",
- "effortShare": 0,
- "potentialLower": "NONE",
- "potentialExpected": "NONE",
- "potentialUpper": "NONE",
- "expertiseCriticality": "ROUTINE",
- "humanInvolvement": "NONE",
- "releasedShare": 0
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| layer required | string Enum: "root" "family" "cluster" "role" "level" |
| parentId | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "method": {
- "version": "string",
- "horizon": "string",
- "share": {
- "property1": 0,
- "property2": 0
}, - "weight": {
- "property1": 0,
- "property2": 0
}, - "reviewDependent": [
- "NONE"
], - "exposureHigh": 0,
- "expertiseHigh": 0
}, - "layer": "root",
- "truncatedAt": 0,
- "points": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "exposure": 0,
- "expertise": 0,
- "reviewShare": 0,
- "coverage": 0,
- "taskCount": 0
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| layer required | string Enum: "root" "family" "cluster" "role" "level" |
| q required | string [ 1 .. 200 ] characters |
| limit | integer <int32> [ 1 .. 500 ] Default: 50 |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "layer": "root",
- "matches": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| layer required | string Enum: "root" "family" "cluster" "role" "level" |
| sortBy | string Default: "exposure" Enum: "exposure" "expertise" |
| limit | integer <int32> [ 1 .. 500 ] Default: 50 |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "method": {
- "version": "string",
- "horizon": "string",
- "share": {
- "property1": 0,
- "property2": 0
}, - "weight": {
- "property1": 0,
- "property2": 0
}, - "reviewDependent": [
- "NONE"
], - "exposureHigh": 0,
- "expertiseHigh": 0
}, - "layer": "root",
- "sortBy": "exposure",
- "rows": [
- {
- "item": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "exposure": 0,
- "expertise": 0,
- "reviewShare": 0,
- "coverage": 0,
- "taskCount": 0
}, - "path": {
- "family": "2093f2b3-1444-4818-ba2d-c059ebed9ae3",
- "cluster": "bb51ff79-79c8-4a7f-b7e6-d64a25f785b9",
- "role": "58f609aa-a5a0-4634-8a6f-363c9e5cdd30",
- "level": "01c39d13-13bf-42ee-9f8c-2b4407d5781d"
}, - "ancestorTitles": {
- "property1": "string",
- "property2": "string"
}
}
]
}Every assessed item weighs one holder; the shares are rounded once here and sum to exactly one.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| layer required | string Enum: "root" "family" "cluster" "role" "level" |
| parentId | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "method": {
- "version": "string",
- "horizon": "string",
- "share": {
- "property1": 0,
- "property2": 0
}, - "weight": {
- "property1": 0,
- "property2": 0
}, - "reviewDependent": [
- "NONE"
], - "exposureHigh": 0,
- "expertiseHigh": 0
}, - "layer": "root",
- "itemCount": 0,
- "assessedItemCount": 0,
- "flows": [
- {
- "classification": "contribution",
- "destination": "RELEASED",
- "share": 0
}
]
}| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| externalId | string or null [ 0 .. 128 ] characters |
| owner | string or null <uuid> |
| hiringManager | string or null <uuid> |
| duration | string or null Enum: "permanent" "fixed-term" |
| workPlace required | string Enum: "remote" "on-site" |
| startDate | string or null <date> |
| applicationUrl | string or null <url> |
| state required | string Enum: "draft" "published" "hired" "archived" |
| publishedAt | string or null <date-time> |
| seniorityLevel required | integer <int32> |
object or null | |
Array of objects or null (com.cobrainer.api.jobs.model.JobUpdateSkill) | |
required | Array of objects (com.cobrainer.api.jobs.model.JobTranslationUpdate) |
{- "externalId": "string",
- "owner": "534359f7-5407-4b19-ba92-c71c370022a5",
- "hiringManager": "d930cc18-1d64-4035-a77f-9e7fc88dc564",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "state": "draft",
- "publishedAt": "2019-08-24T14:15:22Z",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "owner": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "hiringManager": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "title": "string",
- "description": "string",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "language": "de-DE",
- "applicationUrl": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "publishedAt": "2019-08-24T14:15:22Z",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0
}
], - "shortListSize": 0,
- "viewCount": 0,
- "contact": {
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "john.deo@example.com"
}, - "isNew": true,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}| minLength | integer <int32> Default: 300 |
| maxLength | integer <int32> Default: 1000 |
| clearCache | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| state | string Enum: "draft" "published" "hired" "archived" |
| owner | string or null <uuid> |
| duration | string or null Enum: "permanent" "fixed-term" |
| workPlace | string Enum: "remote" "on-site" |
| startDate | string or null <date> |
| hiringManager | string or null <uuid> |
| applicationUrl | string or null <url> |
| seniorityLevel | integer <int32> |
object (com.cobrainer.api.jobs.model.CustomJobAttributes) | |
| externalId | string or null [ 0 .. 128 ] characters |
Array of objects (com.cobrainer.api.jobs.model.JobUpdateSkill) | |
Array of objects (com.cobrainer.api.jobs.model.JobTranslationUpdate) | |
| publishedAt | string or null <date-time> |
{- "state": "draft",
- "owner": "534359f7-5407-4b19-ba92-c71c370022a5",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "hiringManager": "d930cc18-1d64-4035-a77f-9e7fc88dc564",
- "applicationUrl": "string",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "externalId": "string",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "publishedAt": "2019-08-24T14:15:22Z"
}{- "jobDescription": "string"
}| state | string Enum: "draft" "published" "hired" "archived" Limit returned filter criteria by prefilter for job state. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "filters": [
- {
- "field": "string",
- "type": "boolean",
- "values": [
- null
]
}
]
}| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.common.model.Paged) |
com.cobrainer.api.common.model.Sorted (object) or null | |
com.cobrainer.api.common.model.FilterCom.cobrainer.api.jobs.model.Job (any) or null |
Jobs with a specific hiring manager
{- "paged": {
- "page": 0,
- "size": 20
}, - "filter": {
- "op": "in",
- "field": "hiringManager",
- "values": [
- "3d837e2c-6788-4a58-bc6b-557665d7bcc1",
- "0357f443-36f2-4efe-ae34-b5f36fb390e7"
]
}
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "owner": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "hiringManager": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "title": "string",
- "description": "string",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "language": "de-DE",
- "applicationUrl": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "publishedAt": "2019-08-24T14:15:22Z",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0
}
], - "shortListSize": 0,
- "viewCount": 0,
- "contact": {
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "john.deo@example.com"
}, - "isNew": true,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}Returns a single job
| jobId required | string <uuid> The unique id that references a specific job |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "owner": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "hiringManager": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "title": "string",
- "description": "string",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "language": "de-DE",
- "applicationUrl": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "publishedAt": "2019-08-24T14:15:22Z",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0
}
], - "shortListSize": 0,
- "viewCount": 0,
- "contact": {
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "john.deo@example.com"
}, - "isNew": true,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}Update an existing job object with new values. Ignores all values that are read-only in current context.
| jobId required | string <uuid> The unique id that references a specific job |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| state | string Enum: "draft" "published" "hired" "archived" |
| owner | string or null <uuid> |
| duration | string or null Enum: "permanent" "fixed-term" |
| workPlace | string Enum: "remote" "on-site" |
| startDate | string or null <date> |
| hiringManager | string or null <uuid> |
| applicationUrl | string or null <url> |
| seniorityLevel | integer <int32> |
object (com.cobrainer.api.jobs.model.CustomJobAttributes) | |
| externalId | string or null [ 0 .. 128 ] characters |
Array of objects (com.cobrainer.api.jobs.model.JobUpdateSkill) | |
Array of objects (com.cobrainer.api.jobs.model.JobTranslationUpdate) | |
| publishedAt | string or null <date-time> |
{- "state": "draft",
- "owner": "534359f7-5407-4b19-ba92-c71c370022a5",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "hiringManager": "d930cc18-1d64-4035-a77f-9e7fc88dc564",
- "applicationUrl": "string",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "externalId": "string",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "publishedAt": "2019-08-24T14:15:22Z"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "owner": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "hiringManager": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "title": "string",
- "description": "string",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "language": "de-DE",
- "applicationUrl": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "publishedAt": "2019-08-24T14:15:22Z",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0
}
], - "shortListSize": 0,
- "viewCount": 0,
- "contact": {
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "john.deo@example.com"
}, - "isNew": true,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}| minLength | integer <int32> Default: 300 |
| maxLength | integer <int32> Default: 1000 |
| clearCache | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| state | string Enum: "draft" "published" "hired" "archived" |
| owner | string or null <uuid> |
| duration | string or null Enum: "permanent" "fixed-term" |
| workPlace | string Enum: "remote" "on-site" |
| startDate | string or null <date> |
| hiringManager | string or null <uuid> |
| applicationUrl | string or null <url> |
| seniorityLevel | integer <int32> |
object (com.cobrainer.api.jobs.model.CustomJobAttributes) | |
| externalId | string or null [ 0 .. 128 ] characters |
Array of objects (com.cobrainer.api.jobs.model.JobUpdateSkill) | |
Array of objects (com.cobrainer.api.jobs.model.JobTranslationUpdate) | |
| publishedAt | string or null <date-time> |
{- "state": "draft",
- "owner": "534359f7-5407-4b19-ba92-c71c370022a5",
- "duration": "permanent",
- "workPlace": "remote",
- "startDate": "2019-08-24",
- "hiringManager": "d930cc18-1d64-4035-a77f-9e7fc88dc564",
- "applicationUrl": "string",
- "seniorityLevel": 0,
- "custom": {
- "word": "something",
- "when": "2020-01-07",
- "really": true,
- "many": 9001
}, - "externalId": "string",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "publishedAt": "2019-08-24T14:15:22Z"
}{- "jobDescription": "string"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| asyncTranslation | boolean |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
| externalId | string or null [ 0 .. 128 ] characters |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string"
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}Translations are upserted by language: omitted languages keep their previously-stored content. shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| externalId | string or null [ 0 .. 128 ] characters |
Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
{- "externalId": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| asyncTranslation | boolean |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
| externalId | string or null [ 0 .. 128 ] characters |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string"
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "title": "string",
- "description": "string",
- "childCount": 0,
- "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0,
- "expected": 0
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "isMetadataCompleted": true,
- "isPendingGeneration": true
}
]| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) |
| externalId | string or null [ 0 .. 128 ] characters |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "title": "string",
- "description": "string",
- "childCount": 0,
- "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0,
- "expected": 0
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "isMetadataCompleted": true,
- "isPendingGeneration": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| includeProfiles | boolean Default: true |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}
]shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation cascade.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
| externalId | string or null [ 0 .. 128 ] characters |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileReviewerAssign (object) or null | |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileCreate (object) or null Specify job profile to be linked to this level, skips autogeneration |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}, - "jobProfile": {
- "state": "draft",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
]
}
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| inviteLanguage | string |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| emailAddress required | string <email> [ 0 .. 100 ] characters |
| firstName required | string [ 0 .. 128 ] characters |
| lastName required | string [ 0 .. 128 ] characters |
| jobTitle | string or null [ 0 .. 128 ] characters |
| roles required | Array of strings |
| method | string or null Enum: "EMAIL" "SSO" |
{- "emailAddress": "user@example.com",
- "firstName": "string",
- "lastName": "string",
- "jobTitle": "string",
- "roles": [
- "string"
], - "method": "EMAIL"
}{- "tenantId": "f97df110-f4de-492e-8849-4a6af68026b0",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "emailAddress": "john.doe@example.com",
- "jobTitle": "HR Manager",
- "roles": [
- "job_architect",
- "recruiter"
], - "createdAt": "2019-08-24T14:15:22Z",
- "state": "open",
- "authType": "sso"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.api.jobarchitecture.model.JobArchitectureRoleUpdate) |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileSkillPrompt (object) or null | |
com.cobrainer.api.jobarchitecture.model.jobprofiles.RegenerationCommentsContext (object) or null |
{- "jobRole": {
- "tasksBaseVersion": 1,
- "externalId": "string",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}, - "jobProfile": {
- "state": "draft",
- "tasksBaseVersion": 1,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
], - "versionComment": "string",
- "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "additionalPrompt": {
- "type": "redetect",
- "userInput": "string"
}, - "commentsContext": {
- "version": 0,
- "language": "de-DE",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "commentIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "includeReplies": true
}
}{- "detectedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "addedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "removedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "changedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| recursive required | boolean |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| inviteLanguage | string |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| emailAddress required | string <email> [ 0 .. 100 ] characters |
| firstName required | string [ 0 .. 128 ] characters |
| lastName required | string [ 0 .. 128 ] characters |
| jobTitle | string or null [ 0 .. 128 ] characters |
| roles required | Array of strings |
| method | string or null Enum: "EMAIL" "SSO" |
{- "emailAddress": "user@example.com",
- "firstName": "string",
- "lastName": "string",
- "jobTitle": "string",
- "roles": [
- "string"
], - "method": "EMAIL"
}{- "tenantId": "f97df110-f4de-492e-8849-4a6af68026b0",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "emailAddress": "john.doe@example.com",
- "jobTitle": "HR Manager",
- "roles": [
- "job_architect",
- "recruiter"
], - "createdAt": "2019-08-24T14:15:22Z",
- "state": "open",
- "authType": "sso"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.api.jobarchitecture.model.JobArchitectureLevelUpdate) |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileSkillPrompt (object) or null | |
com.cobrainer.api.jobarchitecture.model.jobprofiles.RegenerationCommentsContext (object) or null |
{- "jobLevel": {
- "tasksBaseVersion": 1,
- "externalId": "string",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}, - "jobProfile": {
- "state": "draft",
- "tasksBaseVersion": 1,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
], - "versionComment": "string",
- "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "additionalPrompt": {
- "type": "redetect",
- "userInput": "string"
}, - "commentsContext": {
- "version": 0,
- "language": "de-DE",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "commentIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "includeReplies": true
}
}{- "detectedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "addedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "removedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "changedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| id required | string <uuid> |
| version required | integer <int32> |
| sourceLanguage required | string = 5 characters A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemCommentTarget) |
| content required | string |
com.cobrainer.api.jobarchitecture.model.JobArchitectureItemCommentAnchorCreate (object) or null |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}
}
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| commentId required | string <uuid> |
| version required | integer <int32> |
{- "version": 0
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| commentId required | string <uuid> |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| commentId required | string <uuid> |
| id required | string <uuid> |
| content required | string |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "content": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| type required | string Enum: "families-and-clusters" "families-clusters-and-roles" "roles-for-all-clusters" "levels-for-all-roles" "all" |
| awaitKnowledgeBaseIngestion | boolean |
| autoSelectTracks required | boolean Should generation procedure choose career track automatically from all available. |
| respectSkillsFromRole required | boolean Should generation procedure copy skills profile from role without re-detection. |
| createRoleCopy required | boolean Should generation create one level as copy of a role. |
| careerTracks required | Array of strings <uuid> [ items <uuid > ] List of career tracks to be used for job level creation. Used if autoSelectTracks set to false. |
{- "autoSelectTracks": true,
- "respectSkillsFromRole": true,
- "createRoleCopy": true,
- "careerTracks": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "filters": [
- {
- "field": "string",
- "type": "boolean",
- "values": [
- null
]
}
]
}Set the optional detail query param to true to hydrate each ROLE and LEVEL result with its fully resolved object.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| detail | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.common.model.Paged) |
com.cobrainer.api.common.model.Sorted (object) or null | |
com.cobrainer.api.common.model.FilterCom.cobrainer.api.jobarchitecture.model.JobArchitectureItem (any) or null |
Elements with matching title
{- "paged": {
- "page": 0,
- "size": 20
}, - "sorted": {
- "fields": [
- {
- "field": "levelNumber",
- "direction": "asc"
}
]
}, - "filter": {
- "op": "contains",
- "field": "title",
- "value": "engineer",
- "ignore_case": true
}
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "level": "root",
- "title": "string",
- "path": {
- "property1": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "property2": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}, - "childCount": 0,
- "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "state": "draft",
- "detail": {
- "type": "string"
}
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| asyncTranslation | boolean |
| generateDescription | boolean |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
| externalId | string or null [ 0 .. 128 ] characters |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string"
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| asyncTranslation | boolean |
| generateDescription | boolean |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
| externalId | string or null [ 0 .. 128 ] characters |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string"
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| Host | string |
{- "downloadLink": "string"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| includeProfiles | boolean Default: true |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}
]shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation cascade.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
| externalId | string or null [ 0 .. 128 ] characters |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileReviewerAssign (object) or null | |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileCreate (object) or null Alternatively specify job profile to be linked to this role, skips autogeneration |
{- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "externalId": "string",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}, - "jobProfile": {
- "state": "draft",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
]
}
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| jobFamilyId required | string <uuid> The unique id that references a specific job architecture element |
| recursive required | boolean |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "filters": [
- {
- "field": "string",
- "type": "boolean",
- "values": [
- null
]
}
]
}Set the optional detail query param to true to hydrate each ROLE and LEVEL result with its fully resolved object.
| detail | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.common.model.Paged) |
com.cobrainer.api.common.model.Sorted (object) or null | |
com.cobrainer.api.common.model.FilterCom.cobrainer.api.jobarchitecture.model.JobArchitectureItem (any) or null |
Elements with matching title
{- "paged": {
- "page": 0,
- "size": 20
}, - "sorted": {
- "fields": [
- {
- "field": "levelNumber",
- "direction": "asc"
}
]
}, - "filter": {
- "op": "contains",
- "field": "title",
- "value": "engineer",
- "ignore_case": true
}
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "level": "root",
- "title": "string",
- "path": {
- "property1": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "property2": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}, - "childCount": 0,
- "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "state": "draft",
- "detail": {
- "type": "string"
}
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "title": "string",
- "description": "string",
- "childCount": 0,
- "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0,
- "expected": 0
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "isMetadataCompleted": true,
- "isPendingGeneration": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| externalId | string or null [ 0 .. 128 ] characters |
Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) |
{- "externalId": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "title": "string",
- "description": "string",
- "childCount": 0,
- "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0,
- "expected": 0
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "isMetadataCompleted": true,
- "isPendingGeneration": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| version | string Default: "latest" |
| includeComments | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}Translations are upserted by language: omitted languages keep their previously-stored content. shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| tasksBaseVersion | integer <int32> >= 1 Item version the edit session started from. The saved tasks block is compared against the tasks that version carried and the differences enter the changelog; without it, no task changelog events are written. |
| externalId | string or null [ 0 .. 128 ] characters |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileReviewerAssign (object) or null | |
object (com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileUpdate) A (partial) job profile object with updated values | |
Array of objects (com.cobrainer.api.tasks.model.WorkTaskUpdate) A non-empty block containing only entries without taskId replaces all pinned tasks; each entry requires a title and creates a task whose content is generated asynchronously. Otherwise, entries with taskId must cover exactly the pinned tasks and id-less titled entries are additions. An empty block is accepted only when no tasks are pinned and never clears tasks. Array order becomes the new task order. A non-empty block requires a TASKS section on the version being written. |
{- "tasksBaseVersion": 1,
- "externalId": "string",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}, - "jobProfile": {
- "state": "draft",
- "tasksBaseVersion": 1,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
], - "versionComment": "string",
- "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "layer": "root",
- "version": 0,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "translationOriginLanguage": "de-DE",
- "publishedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "changeId": "a117c1ac-cc98-4e3a-bcad-8e2be82a199b",
- "comment": "string",
- "selectedCareerTrackId": "fbfb69cf-0bec-40c5-a32b-1ba3df7de78e",
- "selectedCareerTrackLevel": 0,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| comment | string or null |
{- "comment": "string"
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "layer": "root",
- "version": 0,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "translationOriginLanguage": "de-DE",
- "publishedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "changeId": "a117c1ac-cc98-4e3a-bcad-8e2be82a199b",
- "comment": "string",
- "selectedCareerTrackId": "fbfb69cf-0bec-40c5-a32b-1ba3df7de78e",
- "selectedCareerTrackLevel": 0,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| version | string Default: "latest" |
| includeComments | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}Translations are upserted by language: omitted languages keep their previously-stored content. shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| tasksBaseVersion | integer <int32> >= 1 Item version the edit session started from. The saved tasks block is compared against the tasks that version carried and the differences enter the changelog; without it, no task changelog events are written. |
| externalId | string or null [ 0 .. 128 ] characters |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileReviewerAssign (object) or null | |
object (com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileUpdate) A (partial) job profile object with updated values | |
Array of objects (com.cobrainer.api.tasks.model.WorkTaskUpdate) A non-empty block containing only entries without taskId replaces all pinned tasks; each entry requires a title and creates a task whose content is generated asynchronously. Otherwise, entries with taskId must cover exactly the pinned tasks and id-less titled entries are additions. An empty block is accepted only when no tasks are pinned and never clears tasks. Array order becomes the new task order. A non-empty block requires a TASKS section on the version being written. |
{- "tasksBaseVersion": 1,
- "externalId": "string",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "state": "assigned"
}, - "jobProfile": {
- "state": "draft",
- "tasksBaseVersion": 1,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
], - "versionComment": "string",
- "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| version required | integer <int32> |
| comment | string or null |
{- "comment": "string"
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "layer": "root",
- "version": 0,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "translationOriginLanguage": "de-DE",
- "publishedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "changeId": "a117c1ac-cc98-4e3a-bcad-8e2be82a199b",
- "comment": "string",
- "selectedCareerTrackId": "fbfb69cf-0bec-40c5-a32b-1ba3df7de78e",
- "selectedCareerTrackLevel": 0,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| commentId required | string <uuid> |
| replyId required | string <uuid> |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| commentId required | string <uuid> |
| replyId required | string <uuid> |
| content required | string |
{- "content": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "description-section",
- "sectionId": "string",
- "skillId": "97d3165d-e1dd-4955-972c-95ebf04dd091"
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}Translations are upserted by language: omitted languages keep their previously-stored content. shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| externalId | string or null [ 0 .. 128 ] characters |
Array of objects (com.cobrainer.api.jobarchitecture.model.JobArchitectureItemTranslation) [ 1 .. 2147483647 ] items |
{- "externalId": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
]
}{- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| includeTopCandidates | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE",
- "topCandidates": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
]
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| searchTerm | string [ 0 .. 100 ] characters The search term entered by the user. Will be matched against the skills to find relevant ones. |
| sort | string Sorting by fields of result object. Separated by "," for multiple criteria, prefixed each by "-" for descending order, default is ascending. Sorting by sub-attributes (if available) by using '.' as a delimiter. E.g. "title,-publishedAt,owner" |
| page | integer >= 0 Default: 0 Page number of the results (0-based) |
| size | integer <= 200 Default: 20 Results per page |
| countOnly | boolean Default: false Only produce the total count and number of pages for given size, no results. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "jobProfilesWithThisSkill": 0,
- "jobsWithThisSkill": 0,
- "usersWithThisSkill": 0,
- "learningOpportunitiesWithThisSkill": 0,
- "skillGap": {
- "absolute": 0,
- "relative": 0.1
}
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
{- "roleMaximumSkillLimit": 0,
- "levelMaximumSkillLimit": 0
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| searchTerm required | string [ 0 .. 100 ] characters The search term entered by the user. Will be matched against the titles to find relevant ones. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "level": "root",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "parentLevel": "root",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfileId": "56f4831f-cb5c-403f-b30e-9e14930a73cb",
- "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "archivedAt": "2019-08-24T14:15:22Z",
- "selectedCareerTrackId": "fbfb69cf-0bec-40c5-a32b-1ba3df7de78e",
- "selectedCareerTrackLevel": 0,
- "isArchived": true
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "layer": "root",
- "version": 0,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "translationOriginLanguage": "de-DE",
- "publishedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "changeId": "a117c1ac-cc98-4e3a-bcad-8e2be82a199b",
- "comment": "string",
- "selectedCareerTrackId": "fbfb69cf-0bec-40c5-a32b-1ba3df7de78e",
- "selectedCareerTrackLevel": 0,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobRoleId required | string <uuid> The unique id that references a specific job architecture element |
| searchTerm required | string |
| limit | integer <int32> Default: 50 |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| includeProfiles | boolean Default: true |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "layer": "root",
- "version": 0,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "translationOriginLanguage": "de-DE",
- "publishedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "changeId": "a117c1ac-cc98-4e3a-bcad-8e2be82a199b",
- "comment": "string",
- "selectedCareerTrackId": "fbfb69cf-0bec-40c5-a32b-1ba3df7de78e",
- "selectedCareerTrackLevel": 0,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobLevelId required | string <uuid> The unique id that references a specific job architecture element |
| searchTerm required | string |
| limit | integer <int32> Default: 50 |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| includeProfiles | boolean Default: true |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}
]Returns the complete path from FAMILY to the given item (role or level). Used for building navigation URLs.
| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
{- "family": "2093f2b3-1444-4818-ba2d-c059ebed9ae3",
- "cluster": "bb51ff79-79c8-4a7f-b7e6-d64a25f785b9",
- "role": "58f609aa-a5a0-4634-8a6f-363c9e5cdd30",
- "level": "01c39d13-13bf-42ee-9f8c-2b4407d5781d"
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| page | integer >= 0 Default: 0 Page number of the results (0-based) |
| size | integer <= 200 Default: 20 Results per page |
| countOnly | boolean Default: false Only produce the total count and number of pages for given size, no results. |
{- "data": [
- {
- "eventId": "d6703cc8-9e79-415d-ac03-a4dc7f6ab43c",
- "changeId": "a117c1ac-cc98-4e3a-bcad-8e2be82a199b",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "actor": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "timestamp": "2019-08-24T14:15:22Z",
- "entityType": "root",
- "details": {
- "type": "created",
- "entity": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "type": "root"
}, - "parent": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "type": "root"
}
}, - "onBehalfOfUser": true
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "actions": {
- "canEdit": true,
- "canReadDebugInfo": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "description": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "updatedAt": "2019-08-24T14:15:22Z"
}
]
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| timezone required | string |
| days | integer <int32> Default: 30 |
{- "timezone": "string",
- "from": "2019-08-24",
- "to": "2019-08-24",
- "days": [
- {
- "date": "2019-08-24",
- "rolesCreated": 0,
- "levelsCreated": 0,
- "versionsCreated": 0,
- "reviewed": 0,
- "assignedToReviewers": 0,
- "total": 0
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| jobClusterId required | string <uuid> The unique id that references a specific job architecture element |
| includeProfiles | boolean Default: true |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "childCount": 0,
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "statistics": {
- "profiles": 0,
- "reviewers": 0,
- "reviewed": 0,
- "familiesCount": 0,
- "clustersCount": 0,
- "rolesCount": 0,
- "levelsCount": 0,
- "publishedRoles": 0,
- "approvedRoles": 0,
- "reviewerRoles": 0,
- "publishedLevels": 0,
- "approvedLevels": 0,
- "reviewerLevels": 0
}, - "generationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true,
- "levels": [
- {
- "architectureId": "93793fb6-2cd8-4077-8aa2-6bb3389b732d",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "externalId": "string",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "actions": {
- "canEdit": true,
- "canAssignReviewer": true,
- "canReadDebugInfo": true,
- "canPublish": true
}, - "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "title": "string",
- "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string"
}
], - "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}, - "jobProfile": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "title": "string",
- "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- null
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- null
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [ ]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
]
}, - "versionInfo": {
- "version": 0,
- "createdAt": "2019-08-24T14:15:22Z",
- "isPublished": true,
- "publishedAt": "2019-08-24T14:15:22Z",
- "isReviewed": true,
- "reviewedAt": "2019-08-24T14:15:22Z",
- "publishedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "translationOriginLanguage": "de-DE",
- "comment": "string"
}, - "isArchived": true
}
]
}
]| jobArchitectureId | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "outcome": "actions_available",
- "architectures": [
- {
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "title": "string",
- "updatedAt": "2019-08-24T14:15:22Z",
- "setup": {
- "completedStepCount": 0,
- "totalStepCount": 0,
- "steps": [
- {
- "code": "company_information",
- "status": "complete",
- "processingKind": "document_ingestion",
- "requiredCapability": "edit_job_architecture"
}
]
}, - "publication": {
- "completedStepCount": 0,
- "totalStepCount": 0,
- "steps": [
- {
- "code": "company_information",
- "status": "complete",
- "processingKind": "document_ingestion",
- "requiredCapability": "edit_job_architecture"
}
]
}
}
], - "personalActions": [
- {
- "code": "company_information",
- "source": "setup",
- "status": "actionable",
- "priority": 0,
- "requiredCapability": "edit_job_architecture",
- "target": {
- "kind": "job_architecture",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "versionNo": 0,
- "notificationIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}, - "reason": {
- "code": "company_information_missing",
- "actual": 0,
- "required": 0
}
}
], - "primaryAction": {
- "code": "company_information",
- "source": "setup",
- "status": "actionable",
- "priority": 0,
- "requiredCapability": "edit_job_architecture",
- "target": {
- "kind": "job_architecture",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "versionNo": 0,
- "notificationIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}, - "reason": {
- "code": "company_information_missing",
- "actual": 0,
- "required": 0
}
}, - "alternativeActions": [
- {
- "code": "company_information",
- "source": "setup",
- "status": "actionable",
- "priority": 0,
- "requiredCapability": "edit_job_architecture",
- "target": {
- "kind": "job_architecture",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "versionNo": 0,
- "notificationIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}, - "reason": {
- "code": "company_information_missing",
- "actual": 0,
- "required": 0
}
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| itemId required | string <uuid> The unique id that references a specific job architecture element |
| commentId required | string <uuid> |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | Array of objects (com.cobrainer.api.skills.model.RelatedSkillsRequestSkill) |
| hardSkillsLimit | integer or null <int32> |
| softSkillsLimit | integer or null <int32> |
| languageSkillsLimit | integer or null <int32> |
{- "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0
}
], - "hardSkillsLimit": 0,
- "softSkillsLimit": 0,
- "languageSkillsLimit": 0
}[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true
}
]| limit | integer <int32> Optionally the global limit for number of detected skills. |
| docType | string Enum: "unknown" "cv" "job" "course" "history_work" "history_education" "history_project" "history_course" "history_publication" Type of document used for detecting skills. |
| includeProficiencies | boolean Deprecated Only for no docType cases proficiencies are not returned at the moment. In a future release, will be returned for that case as well and parameter will be entirely dropped. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| title | string or null [ 0 .. 255 ] characters |
| text required | string |
| language | string or null = 5 characters A 5 letter language code, like "de-DE", "en-US" |
| tags | Array of strings or null |
{- "title": "string",
- "text": "string",
- "language": "de-DE",
- "tags": [
- "string"
]
}{- "hardSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "softSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "languageSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
]
}| searchTerm required | string [ 0 .. 100 ] characters The search term entered by the user. Will be matched against the skills to find relevant ones. |
| limit required | integer <int32> The number of results to return at most. |
| type | Array of strings Items Enum: "hard" "soft" "language" The type that the returned skills are expected to have. This parameter can contain multiple comma-separated values or can be repeated to include multiple types of skills in the result. Leaving this parameter out will search for skills of all types. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true
}
]| skillId required | string <uuid> The unique id that references a specific skill. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true
}| skillId required | string <uuid> The unique id that references a specific skill. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true
}
]| skillId required | string <uuid> The unique id that references a specific skill. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "description": "string",
- "shortDescription": "string",
- "proficiencyLevelDetails": [
- {
- "proficiencyLevel": 0,
- "shortDescription": "string",
- "description": "string",
- "subSkills": [
- {
- "title": "string",
- "description": "string"
}
]
}
]
}| skillIds required | Array of strings <uuid> [ 0 .. 100 ] items [ items <uuid > ] The list of unique IDs that reference specific skills. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true
}
]| jobProfileId required | string <uuid> The unique id that references a specific job profile |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileUpdate) A (partial) job profile object with updated values |
com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileSkillPrompt (object) or null | |
com.cobrainer.api.jobarchitecture.model.jobprofiles.RegenerationCommentsContext (object) or null |
{- "jobProfile": {
- "state": "draft",
- "tasksBaseVersion": 1,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
], - "versionComment": "string",
- "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}, - "additionalPrompt": {
- "type": "redetect",
- "userInput": "string"
}, - "commentsContext": {
- "version": 0,
- "language": "de-DE",
- "itemId": "f11b669d-7201-4c21-88af-d85092f0c005",
- "commentIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "includeReplies": true
}
}{- "detectedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "addedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "removedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
], - "changedSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "confidence": 0,
- "textOccurrences": [
- "string"
], - "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "proficiencyLevel": 0
}
]
}| state | string Enum: "draft" "active" "archived" Limit returned filter criteria by prefilter for job profile state. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "filters": [
- {
- "field": "string",
- "type": "boolean",
- "values": [
- null
]
}
]
}| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.common.model.Paged) |
com.cobrainer.api.common.model.Sorted (object) or null | |
com.cobrainer.api.common.model.FilterCom.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfile (any) or null |
Job profiles with a specific owner
{- "paged": {
- "page": 0,
- "size": 20
}, - "filter": {
- "op": "in",
- "field": "owner",
- "values": [
- "3d837e2c-6788-4a58-bc6b-557665d7bcc1",
- "0357f443-36f2-4efe-ae34-b5f36fb390e7"
]
}
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "layer": "root",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "familyId": "44b97bbb-267f-4989-8ce2-585694b2e454",
- "clusterId": "a3d24843-7014-4490-bdd3-b7cb39b400c8",
- "roleId": "7382d58e-652a-4905-b7c9-bcca1e0e5391",
- "levelId": "a70368c7-b12e-43a9-9830-ab2485710b95"
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}Returns a single job profile
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "layer": "root",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "familyId": "44b97bbb-267f-4989-8ce2-585694b2e454",
- "clusterId": "a3d24843-7014-4490-bdd3-b7cb39b400c8",
- "roleId": "7382d58e-652a-4905-b7c9-bcca1e0e5391",
- "levelId": "a70368c7-b12e-43a9-9830-ab2485710b95",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}
}Update an existing job profile object with new values. Ignores all values that are read-only in current context. Translations are upserted by language: a language present in the request replaces the existing entry for that language, and languages absent from the request keep their previously-stored content. To remove a language, use DELETE /job-profiles/{jobProfileId}/translations/{language}. shouldTranslate and asyncTranslation default to false; clients must opt in explicitly to trigger translation.
| jobProfileId required | string <uuid> The unique id that references a specific job profile |
| shouldTranslate | boolean Default: false |
| asyncTranslation | boolean Default: false |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| state | string Enum: "draft" "active" "archived" |
| tasksBaseVersion | integer <int32> >= 1 Item version the edit session started from. The saved tasks block is compared against the tasks that version carried and the differences enter the changelog; without it, no task changelog events are written. |
Array of objects (com.cobrainer.api.jobarchitecture.model.jobprofiles.SectionTagDefinition) Template section definitions carried on regeneration payloads. Absent means no change to the profile's template linkage. Once set, a profile cannot revert to legacy. | |
Array of objects (com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileUpdateSkill) | |
Array of objects (com.cobrainer.api.jobarchitecture.model.jobprofiles.JobProfileTranslation) [ 1 .. 2147483647 ] items | |
| versionComment | string or null |
Array of objects (com.cobrainer.api.tasks.model.WorkTaskUpdate) A non-empty block containing only entries without taskId replaces all tasks pinned by the linked item; each entry requires a title and creates a task whose content is generated asynchronously. Otherwise, entries with taskId must cover exactly the pinned tasks and id-less titled entries are additions. An empty block is accepted only when no tasks are pinned and never clears tasks. Array order becomes the new task order. A non-empty block requires a TASKS section on the version being written. Only valid for job profiles linked to a job architecture item, and only honored on the job profile update endpoint; ignored where this object is nested in other payloads. |
{- "state": "draft",
- "tasksBaseVersion": 1,
- "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string"
}
]
}
], - "versionComment": "string",
- "tasks": [
- {
- "version": 1,
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "title": "string",
- "description": "string"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "layer": "root",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "familyId": "44b97bbb-267f-4989-8ce2-585694b2e454",
- "clusterId": "a3d24843-7014-4490-bdd3-b7cb39b400c8",
- "roleId": "7382d58e-652a-4905-b7c9-bcca1e0e5391",
- "levelId": "a70368c7-b12e-43a9-9830-ab2485710b95",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}
}| sort | string Sorting by fields of result object. Separated by "," for multiple criteria, prefixed each by "-" for descending order, default is ascending. Sorting by sub-attributes (if available) by using '.' as a delimiter. E.g. "title,-publishedAt,owner" |
| page | integer >= 0 Default: 0 Page number of the results (0-based) |
| size | integer <= 200 Default: 20 Results per page |
| countOnly | boolean Default: false Only produce the total count and number of pages for given size, no results. |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "reviewer": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string",
- "state": "assigned"
}, - "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
], - "state": "draft",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "skills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "isSynced": true,
- "level": 0,
- "competencyId": "714bc50d-aee6-4a74-a077-3bf4ed561f7c",
- "confidence": 0
}
], - "competencies": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string",
- "description": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
]
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "structured": [
- {
- "tag": "tasks",
- "value": "string",
- "id": "string",
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8"
}
]
}
], - "language": "de-DE",
- "actions": {
- "canEdit": true,
- "canAssignReviewer": true
}, - "sectionTags": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "names": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "type": "BULLET_POINTS"
}
], - "tasks": [
- {
- "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
- "taskVersion": 0,
- "order": 0,
- "generationState": "queued",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "clusters": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "translations": [
- {
- "language": "de-DE",
- "name": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "translations": [
- {
- "language": "de-DE",
- "title": "string",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": null,
- "description": null,
- "physicality": null
}
]
}, - "classificationReasoning": "string",
- "estimatedEffortReasoning": "string"
}
], - "translationOriginLanguage": "de-DE"
}
], - "layer": "root",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "familyId": "44b97bbb-267f-4989-8ce2-585694b2e454",
- "clusterId": "a3d24843-7014-4490-bdd3-b7cb39b400c8",
- "roleId": "7382d58e-652a-4905-b7c9-bcca1e0e5391",
- "levelId": "a70368c7-b12e-43a9-9830-ab2485710b95",
- "creator": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "profileGenerationInfo": {
- "state": "queued",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "skillDetectionState": "queued",
- "translationState": "queued",
- "tasksState": "queued",
- "inProgress": true
}
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| jsaId required | string <uuid> The unique id that references a specific job architecture |
| templateId required | string <uuid> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| name required | string <= 512 characters Name of the template |
| description required | string <= 5000 characters Description of the template |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.CustomJobProfileTemplateSectionRequest) Job role sections, ordered by desired ordering |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.CustomJobProfileTemplateSectionRequest) Job level sections, ordered by desired ordering |
required | object (com.cobrainer.api.jobarchitecture.model.SkillLimits) Skill detection limits for job role profiles |
required | object (com.cobrainer.api.jobarchitecture.model.SkillLimits) Skill detection limits for job level profiles |
| cobrainerJobTemplateId | string or null <uuid> ID of the Cobrainer template this template is derived from. Omitting the field keeps the stored selection, an explicit null detaches it. |
{- "name": "string",
- "description": "string",
- "jobRoleSections": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structure": {
- "name": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "guidance": "string",
- "type": "BULLET_POINTS",
- "minNumberOfItems": 0,
- "maxNumberOfItems": 0,
- "taskSettings": {
- "expectedNumberOfSkillsPerTask": 1,
- "maximumNumberOfSkillsPerTask": 1
}
}, - "type": "COBRAINER"
}
], - "jobLevelSections": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structure": {
- "name": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "guidance": "string",
- "type": "BULLET_POINTS",
- "minNumberOfItems": 0,
- "maxNumberOfItems": 0,
- "taskSettings": {
- "expectedNumberOfSkillsPerTask": 1,
- "maximumNumberOfSkillsPerTask": 1
}
}, - "type": "COBRAINER"
}
], - "roleSkillLimits": {
- "expectedNumberOfSkills": 5,
- "maximumNumberOfSkills": 5,
- "skillDetectionPreference": "string"
}, - "levelSkillLimits": {
- "expectedNumberOfSkills": 5,
- "maximumNumberOfSkills": 5,
- "skillDetectionPreference": "string"
}, - "cobrainerJobTemplateId": "27791477-b789-4899-aceb-395099d50c06"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "cobrainerJobTemplateId": "27791477-b789-4899-aceb-395099d50c06",
- "name": "string",
- "description": "string",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "jobRoleSections": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structure": {
- "name": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "guidance": "string",
- "type": "BULLET_POINTS",
- "minNumberOfItems": 0,
- "maxNumberOfItems": 0,
- "taskSettings": {
- "expectedNumberOfSkillsPerTask": 1,
- "maximumNumberOfSkillsPerTask": 1
}
}, - "type": "COBRAINER"
}
], - "jobLevelSections": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structure": {
- "name": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "guidance": "string",
- "type": "BULLET_POINTS",
- "minNumberOfItems": 0,
- "maxNumberOfItems": 0,
- "taskSettings": {
- "expectedNumberOfSkillsPerTask": 1,
- "maximumNumberOfSkillsPerTask": 1
}
}, - "type": "COBRAINER"
}
], - "roleSkillLimits": {
- "expectedNumberOfSkills": 5,
- "maximumNumberOfSkills": 5,
- "skillDetectionPreference": "string"
}, - "levelSkillLimits": {
- "expectedNumberOfSkills": 5,
- "maximumNumberOfSkills": 5,
- "skillDetectionPreference": "string"
}
}| jsaId required | string <uuid> The unique id that references a specific job architecture |
| templateId required | string <uuid> |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jsaId required | string <uuid> The unique id that references a specific job architecture |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "template": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "cobrainerJobTemplateId": "27791477-b789-4899-aceb-395099d50c06",
- "name": "string",
- "description": "string",
- "jobArchitectureId": "215e8531-a4cd-424c-b3c1-c4ccbbf162f9",
- "createdBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "jobRoleSections": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structure": {
- "name": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "guidance": "string",
- "type": "BULLET_POINTS",
- "minNumberOfItems": 0,
- "maxNumberOfItems": 0,
- "taskSettings": {
- "expectedNumberOfSkillsPerTask": 1,
- "maximumNumberOfSkillsPerTask": 1
}
}, - "type": "COBRAINER"
}
], - "jobLevelSections": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "structure": {
- "name": [
- {
- "locale": "de-DE",
- "text": "string",
- "language": "de-DE"
}
], - "guidance": "string",
- "type": "BULLET_POINTS",
- "minNumberOfItems": 0,
- "maxNumberOfItems": 0,
- "taskSettings": {
- "expectedNumberOfSkillsPerTask": 1,
- "maximumNumberOfSkillsPerTask": 1
}
}, - "type": "COBRAINER"
}
], - "roleSkillLimits": {
- "expectedNumberOfSkills": 5,
- "maximumNumberOfSkills": 5,
- "skillDetectionPreference": "string"
}, - "levelSkillLimits": {
- "expectedNumberOfSkills": 5,
- "maximumNumberOfSkills": 5,
- "skillDetectionPreference": "string"
}
}
}| taskId required | string <uuid> |
| version required | integer <int32> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}
]| taskId required | string <uuid> |
| id required | string <uuid> |
| version required | integer <int32> |
| sourceLanguage required | string = 5 characters A 5 letter language code, like "de-DE", "en-US" |
required | object (com.cobrainer.api.tasks.model.WorkTaskCommentTarget) |
| content required | string |
com.cobrainer.api.tasks.model.WorkTaskCommentAnchorCreate (object) or null |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}
}
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| taskId required | string <uuid> |
| commentId required | string <uuid> |
| version required | integer <int32> |
{- "version": 0
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| taskId required | string <uuid> |
| commentId required | string <uuid> |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}
]| taskId required | string <uuid> |
| commentId required | string <uuid> |
| id required | string <uuid> |
| content required | string |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "content": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}Tasks are first-class: one unpinned from every item still lists. The architecture filter keeps tasks pinned by the latest version of any item in the given architectures; the search term matches the title in any language. Results are ordered by the title resolved into the requested language.
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
| architectureIds required | Array of strings <uuid> [ 0 .. 200 ] items [ items <uuid > ] Restrict to tasks pinned by the latest version of any item in these architectures. |
| searchTerm | string or null Case-insensitive substring match against the task title in any language. |
required | object (com.cobrainer.common.model.Paged) |
{- "architectureIds": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "searchTerm": "string",
- "paged": {
- "page": "0",
- "size": "20",
- "countOnly": "false"
}
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "taskVersionId": "string",
- "version": 0,
- "title": "string",
- "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "assessment": {
- "methodVersion": "string",
- "horizon": "string",
- "origin": "ai_generated",
- "potentialLower": "NONE",
- "potentialExpected": "NONE",
- "potentialUpper": "NONE",
- "expertiseCriticality": "ROUTINE",
- "humanInvolvement": "NONE",
- "levers": [
- "AGENTIC_AI"
], - "evidenceConfidence": "LOW",
- "assumptions": [
- "ACCEPTABLE_ERROR_RATE"
], - "assumptionNote": "string",
- "reasoning": {
- "automatableParts": "string",
- "expertiseBoundParts": "string",
- "remainingHumanVerification": "string",
- "confidenceRationale": "string"
}
}, - "parents": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
], - "children": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
], - "related": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
]
}
], - "pagination": {
- "pages": 25,
- "count": 498,
- "page": 3,
- "size": 20
}
}| taskId required | string <uuid> |
| commentId required | string <uuid> |
| replyId required | string <uuid> |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| taskId required | string <uuid> |
| commentId required | string <uuid> |
| replyId required | string <uuid> |
| content required | string |
{- "content": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "parentId": "70850378-7d3c-4f45-91b7-942d4dfbbd43",
- "version": 0,
- "sourceLanguage": "de-DE",
- "target": {
- "kind": "title",
- "stepIndex": 0
}, - "content": "string",
- "author": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "updatedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}, - "anchor": {
- "quoteSelector": {
- "exact": "string",
- "prefix": "string",
- "suffix": "string"
}, - "positionSelector": {
- "start": 0,
- "end": 0
}, - "status": "anchored"
}, - "resolution": {
- "version": 0,
- "resolvedAt": "2019-08-24T14:15:22Z",
- "resolvedBy": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "firstName": "string",
- "lastName": "string",
- "emailAddress": "string"
}
}
}| taskId required | string <uuid> |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "taskVersionId": "string",
- "version": 0,
- "title": "string",
- "generationState": "queued",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "assessmentState": "queued",
- "assessment": {
- "methodVersion": "string",
- "horizon": "string",
- "origin": "ai_generated",
- "potentialLower": "NONE",
- "potentialExpected": "NONE",
- "potentialUpper": "NONE",
- "expertiseCriticality": "ROUTINE",
- "humanInvolvement": "NONE",
- "levers": [
- "AGENTIC_AI"
], - "evidenceConfidence": "LOW",
- "assumptions": [
- "ACCEPTABLE_ERROR_RATE"
], - "assumptionNote": "string",
- "reasoning": {
- "automatableParts": "string",
- "expertiseBoundParts": "string",
- "remainingHumanVerification": "string",
- "confidenceRationale": "string"
}
}, - "parents": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
], - "children": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
], - "related": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
]
}| taskId required | string <uuid> |
| version required | integer <int32> >= 1 |
| Accept-Language | string = 5 characters Example: de-DE A 5 letter language code, like "de-DE", "en-US" |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "taskVersionId": "string",
- "version": 0,
- "title": "string",
- "generationState": "queued",
- "description": "string",
- "workflow": {
- "steps": [
- {
- "title": "string",
- "description": "string",
- "physicality": "physical"
}
]
}, - "classification": {
- "value": "contribution",
- "reasoning": "string"
}, - "estimatedEffort": {
- "minimumHoursPerWeek": 168,
- "maximumHoursPerWeek": 168,
- "reasoning": "string"
}, - "requiredSkills": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "skillType": "hard",
- "title": "string",
- "titles": [
- {
- "language": "de-DE",
- "title": "string"
}
], - "level": 0,
- "order": 0
}
], - "assessmentState": "queued",
- "assessment": {
- "methodVersion": "string",
- "horizon": "string",
- "origin": "ai_generated",
- "potentialLower": "NONE",
- "potentialExpected": "NONE",
- "potentialUpper": "NONE",
- "expertiseCriticality": "ROUTINE",
- "humanInvolvement": "NONE",
- "levers": [
- "AGENTIC_AI"
], - "evidenceConfidence": "LOW",
- "assumptions": [
- "ACCEPTABLE_ERROR_RATE"
], - "assumptionNote": "string",
- "reasoning": {
- "automatableParts": "string",
- "expertiseBoundParts": "string",
- "remainingHumanVerification": "string",
- "confidenceRationale": "string"
}
}, - "parents": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
], - "children": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
], - "related": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "title": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "market_based",
- "title": "string",
- "description": "string",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
]
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| type required | string Enum: "market_based" "ig_metall" "verdi" "ig_bce" "evg" "gew" "ig_bau" "ngg" "djv" "marburger_bund" "ufo" "gdl" |
| title required | string [ 0 .. 50 ] characters |
| description | string or null [ 0 .. 2000 ] characters |
required | Array of objects (com.cobrainer.api.jobarchitecture.model.CareerTrackLevel) [ 0 .. 20 ] items |
{- "type": "market_based",
- "title": "string",
- "description": "string",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
]
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "market_based",
- "title": "string",
- "description": "string",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| type required | string Enum: "market_based" "ig_metall" "verdi" "ig_bce" "evg" "gew" "ig_bau" "ngg" "djv" "marburger_bund" "ufo" "gdl" |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "market_based",
- "title": "string",
- "description": "string",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
]
}
]| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| careerTrackId required | string <uuid> The unique id that references a specific career track |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "market_based",
- "title": "string",
- "description": "string",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| careerTrackId required | string <uuid> The unique id that references a specific career track |
{- "errors": [
- {
- "errorCode": "SRV0001",
- "message": "string",
- "stackTrace": "string"
}
]
}| jobArchitectureId required | string <uuid> The unique id that references a specific job architecture |
| careerTrackId required | string <uuid> The unique id that references a specific career track |
| type | string Enum: "market_based" "ig_metall" "verdi" "ig_bce" "evg" "gew" "ig_bau" "ngg" "djv" "marburger_bund" "ufo" "gdl" |
Array of objects (com.cobrainer.api.jobarchitecture.model.CareerTrackLevel) [ 0 .. 20 ] items | |
| title | string [ 0 .. 50 ] characters |
| description | string or null [ 0 .. 2000 ] characters |
{- "type": "market_based",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
], - "title": "string",
- "description": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "market_based",
- "title": "string",
- "description": "string",
- "careerLevels": [
- {
- "level": 0,
- "title": "string",
- "description": "string"
}
]
}