Created
May 12, 2025 15:14
-
-
Save tomitrescak/d5b72fb40d671b47f10e5a06927f5752 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": { | |
"core_competencies": { | |
"type": "array", | |
"description": "Find the core competencies that this subject is teaching and those that are not taught in the subject? To find missing competencies consider the jobs that this subject supports and the competencies those jobs require, yet are not taught in this subject but should be. Core competencies are skills that are common to all jobs such as ‘teamwork’ or ‘problem solving’. They are sometimes known as ‘foundation skills’ or ‘employability skills’. The core competencies in the Australian Skills Classification align to the definitions of foundation skills typically used in the Australian VET system – specifically the Employability Skills Framework developed by the Australian Skills Quality Authority with minor differences recommended by education system experts. Try to find at least 5 covered and 3 missing, but more the better.", | |
"items": { | |
"type": "object", | |
"properties": { | |
"competency": { | |
"type": "string", | |
"description": "The name of the competency." | |
}, | |
"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." | |
}, | |
"cluster": { | |
"type": "string", | |
"enum": [ | |
"navigating the world of work", | |
"interacting with others", | |
"getting the work done" | |
], | |
"description": "What is the topmost cluster this competency belongs to? For example, 'Interpersonal Skills'." | |
}, | |
"activities": { | |
"type": "array", | |
"description": "You must specify which activities from the provided text are performed to develop this competency if the competency is covered in the subject.", | |
"items": { | |
"type": "string", | |
"description": "A specific activity." | |
} | |
}, | |
"assignments": { | |
"type": "array", | |
"description": "You must specify which assignments or lecture are developing this competency. 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 the student do in this assignment to develop this competency? For example, 'works in a team to solve a problem'." | |
} | |
}, | |
"required": ["name", "activity"] | |
} | |
}, | |
"covered": { | |
"type": "object", | |
"description": "Is this competence covered in the subject or not? If not, provide a reason why it should be covered", | |
"properties": { | |
"covered": { | |
"type": "boolean", | |
"description": "Is this competency covered in the subject or not?" | |
}, | |
"reason": { | |
"type": "string", | |
"description": "If this competency is not covered, provide detailed reason why it should be covered and how it affects individual jobs." | |
} | |
} | |
} | |
}, | |
"required": [ | |
"activities", | |
"assignments", | |
"competency", | |
"level", | |
"cluster", | |
"covered" | |
] | |
} | |
} | |
}, | |
"required": ["core_competencies"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment