π‘Introduction
Skills Module allows organisations to maintain their own skills database or fetch Platform Provided skills.
// Skills JSON looks like this
// orgAlias is "byteraven" for default skills
// Your org can have its exclusive skills json
skills = {
"orgAlias": "techOrg123",
"domains": [
{
"domain": "Software Development",
"skillDomains": [
{
"skillDomain": "Frontend",
"skills": [
{
"skill": "React.js",
"iconUrl": "https://example.com/icons/react.png",
"active": true
},
{
"skill": "Vue.js",
"iconUrl": "https://example.com/icons/vue.png",
"active": false
}
]
},
{
"skillDomain": "Backend",
"skills": [
{
"skill": "Node.js",
"iconUrl": "https://example.com/icons/node.png",
"active": true
},
{
"skill": "Python",
"iconUrl": "https://example.com/icons/python.png",
"active": true
}
]
}
]
},
{
"domain": "Data Science",
"skillDomains": [
{
"skillDomain": "Machine Learning",
"skills": [
{
"skill": "TensorFlow",
"iconUrl": "https://example.com/icons/tensorflow.png",
"active": true
},
{
"skill": "PyTorch",
"iconUrl": "https://example.com/icons/pytorch.png",
"active": false
}
]
},
{
"skillDomain": "Data Visualization",
"skills": [
{
"skill": "Tableau",
"iconUrl": "https://example.com/icons/tableau.png",
"active": true
},
{
"skill": "Power BI",
"iconUrl": "https://example.com/icons/powerbi.png",
"active": true
}
]
}
]
}
]
}
Last updated