Last active
April 7, 2018 00:44
-
-
Save secretrobotron/e352eebf92543d992253b0d16848aac4 to your computer and use it in GitHub Desktop.
JSON Template for Hekima prototype app
This file contains 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
{ | |
"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