Created
May 12, 2025 15:17
-
-
Save tomitrescak/beaad6be1dfdbe06cd1397bbacd7f7d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"properties": { | |
"specialist_tasks": { | |
"type": "array", | |
"description": "Which specialist tasks are covered or missing in subject? To find missing tasks consider the jobs that this subject supports and the tasks those jobs require, yet are not taught in this subject but should be. Try to find at least 15 covered and 15 missing. Specialist tasks these are the activities that describe day-to-day work in a job – for example ‘preparing financial documents’ or ‘giving immunisations’. While specialist tasks can be transferrable across occupations and sectors, they are not universal - unlike core competencies. As such, specialist tasks are useful for differentiating occupations. Specialist tasks change more frequently than core competencies, making it possible to identify trends. This information adds to our understanding of how jobs may be changing in response to factors like increased digitisation or changing business models. Industry and employers can use the specialist tasks to define critical skills and identify skill gaps that could be met by learning on the job, short courses or accelerated training. Try to find at least 5 covered and 3 missing, but more the better.", | |
"items": { | |
"type": "object", | |
"properties": { | |
"task": { | |
"type": "string", | |
"description": "The name of the soft task." | |
}, | |
"covered": { | |
"type": "object", | |
"description": "Is this task covered in the subject or not? If not, provide a reason why it should be covered", | |
"properties": { | |
"covered": { | |
"type": "boolean", | |
"description": "Is this task covered in the subject or not?" | |
}, | |
"reason": { | |
"type": "string", | |
"description": "If this task is not covered, provide detailed reason why it should be covered and how it affects individual jobs." | |
} | |
} | |
}, | |
"level": { | |
"type": "number", | |
"description": "The level of expertise acquired. Use 0 for beginner, being able to follow instructions. 1 for intermediate, being able to work independently and apply skill to new problems. 3 for master, being able to work independently, educate others and lead activities requiring this skill." | |
}, | |
"industry": { | |
"type": "string", | |
"description": "What is the primary industry in which this task is applicable." | |
}, | |
"cluster": { | |
"type": "string", | |
"description": "What would be highest level cluster this task would belong to. Think of cluster as a group of tasks that are related to each other. For example, 'Programming'. A cluster should include at least 10 to 15 different skills" | |
}, | |
"activities": { | |
"type": "array", | |
"description": "You must specify a list of activities from the provided text that the student performed to develop this task, if the task is developed in the subject", | |
"items": { | |
"type": "string", | |
"description": "A specific activity." | |
} | |
}, | |
"assignments": { | |
"type": "array", | |
"description": "If the task is taught in the subject, you must specify which assignments or lecture are developing this task. If there is not assignment, do not mention it or mention that it is not supported by assignment or lecture", | |
"items": { | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string", | |
"description": "Name of the assignment or lecture" | |
}, | |
"activity": { | |
"type": "string", | |
"description": "What exactly does a student do or works on in this subject to develop this skill? For example, 'create programming code to develop an applications'." | |
} | |
}, | |
"required": ["name", "activity"] | |
} | |
} | |
}, | |
"required": [ | |
"activities", | |
"task", | |
"level", | |
"assignments", | |
"industry", | |
"cluster", | |
"covered" | |
] | |
} | |
} | |
}, | |
"required": ["specialist_tasks"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment