π‘Introduction
Job Roles Module allows organisations to maintain their own job roles database or fetch Platform Provided job roles.
// Some code
// orgAlias is "byteraven" for default job roles
// Your org have its exclusive jobRoles json
jobRoles = {
"orgAlias": "creativeAgencyXYZ",
"domains": [
{
"domain": "Engineering",
"iconUrl": "https://example.com/icons/engineering.png",
"roles": [
{
"role": "Software Engineer"
},
{
"role": "DevOps Engineer"
}
]
},
{
"domain": "Design",
"iconUrl": "https://example.com/icons/design.png",
"roles": [
{
"role": "UI/UX Designer"
},
{
"role": "Graphic Designer"
}
]
},
{
"domain": "Marketing",
"iconUrl": "https://example.com/icons/marketing.png",
"roles": [
{
"role": "Digital Marketing Specialist"
},
{
"role": "SEO Specialist"
}
]
}
]
}
Last updated