Skip to content

Instantly share code, notes, and snippets.

@anuragkanungo
Last active December 17, 2015 00:33
Show Gist options
  • Save anuragkanungo/2ef6cf39cfbd50281441 to your computer and use it in GitHub Desktop.
Save anuragkanungo/2ef6cf39cfbd50281441 to your computer and use it in GitHub Desktop.
Taxonomy
E.g. Standard 5 -> Mathematics -> Fractions -> Vulgar Fractions -> Rewriting Vulgar Fractions.
This could all be exported as a JSON object in this way:
{
"title": "Standard 5",
"description": "Lorem ipsum",
"children": [
{
"title": "Mathematics",
"description": "Mathematics for Standard 5",
"children": [
{
"title": "Fractions",
And so on and so forth.
In the leaf node (in this example, "Rewriting Vulgar Fractions") we would have something like this:
{
"title": "Rewriting Vulgar Fractions",
"kind": "Exercise",
"mimetype": "exercise/qti",
"filename": "<filename for QTI export file here"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment