Quick Summary: A career is not a flat record — it is a complete competency model. The object below is the library entry;
GET /api/v1/careers/{id}/definition returns the whole model in one call.Attributes
The definition
The full definition (/careers/{id}/definition) additionally carries settings, the company gradingScale, and complete levels, sections, skillGroups, skills and learnings arrays. Two things to know:
- Benchmarks are always resolved rungs —
{ "id": "46", "grade": 1, "label": "Basic awareness..." }, never a bare integer. The id references the company grading scale. - Each skill carries its full configuration: section, groups, position, career-wide benchmark, its stored
requirementconfiguration, evidence rules, expiry, and per-level activation for every level of the career.
The requirement object
Each career skill carries arequirement object — the stored configuration, never a resolved boolean:
isRequired reflects the stored flag with null resolved: only an explicit false turns a requirement off. scope is all (binds everyone holding the career) or going_forward (applies only to people assigned on or after effectiveFrom).
Guarded deletes
Deleting a career (or one of its levels) that would have consequences refuses with a 409 conflict reporting exactly what stands in the way; retrying with?confirm=true proceeds deliberately.