Created
May 12, 2025 15:22
-
-
Save tomitrescak/9d93f2e3a09eaebfa3806d0345c4e7ff 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": { | |
"proposed_assignments": { | |
"type": "array", | |
"description": "Considering majority of the missing specialist tasks, technology tools and core competencies, propose assignments that could be added or modified to the subject to address these gaps. Consider at least 10 of those skills. Generate max 3 assignments.", | |
"maxItems": 3, | |
"items": { | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string", | |
"description": "Name of the assignment or lecture" | |
}, | |
"description": { | |
"type": "string", | |
"description": "Thorough description of the assignment or lecture with the detailed description of activities and marking criteria" | |
}, | |
"skills": { | |
"type": "array", | |
"description": "The missing skills that this assignment is addressing.", | |
"items": { | |
"type": "object", | |
"description": "The missing skill that this assignment is addressing.", | |
"properties": { | |
"name": { | |
"type": "string", | |
"description": "The name of the skill." | |
}, | |
"type": { | |
"type": "string", | |
"enum": [ | |
"core competency", | |
"technology tool", | |
"specialist task" | |
], | |
"description": "What type of the skill this is. It is either a core competency, technology tool or specialist task." | |
}, | |
"cluster": { | |
"type": "string", | |
"description": "What would be higher level cluster this competency would belong to." | |
} | |
}, | |
"required": ["name", "type", "cluster"] | |
} | |
} | |
}, | |
"required": ["name", "description", "skills"] | |
} | |
} | |
}, | |
"required": ["proposed_assignments"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment