Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@secretrobotron
Last active April 7, 2018 00:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save secretrobotron/e352eebf92543d992253b0d16848aac4 to your computer and use it in GitHub Desktop.
Save secretrobotron/e352eebf92543d992253b0d16848aac4 to your computer and use it in GitHub Desktop.
JSON Template for Hekima prototype app
{
"version": 0,
"weeks": [
{
"id": "0",
"title": "Week 1",
"topic": "Which fruits are best on a rainy day?",
"video": "videos/week1.mp4",
"quiz": {
"questions": [
{
"question": "What fruit is best?",
"answer-type": "multiple-choice",
"answers": ["apples", "bananas", "pears"],
"correct-answer": 2
},
{
"question": "How do you feel about the weather?",
"answer-type": "free-text"
}
]
}
},
{
"id": "1",
"title": "Week 2",
"topic": "What is time?",
"video": "videos/week2.mp4",
"quiz": {
"questions": [
{
"question": "What is time, really?",
"answer-type": "multiple-choice",
"answers": ["a construct", "how humans define their existence", "meaningless", "whatever is on the clock"],
"correct-answer": 2
},
{
"question": "How does time make your life better?",
"answer-type": "free-text"
}
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment