StudyLandSet documentation v0001 Top level fields: * fileType (Should be "studylandSet". If it is anything else, do not accept it.) * version (ie. 1 - an integer - If the version number is GREATER than what you support, do not accept it. Everything will be back-compatible.) * useAt (Should be "https://studyland.asiteontheweb.com/". If it is anything else, do not accept it.) * setName (ie. "Bob's Trivia Quiz". If this field is too long, cut off the end.) * setDescription (ie. "Bob's favourite trivia questions". If this field is too long, cut off the end.) * questions (array of any number of questions - each question looks like this:) * questionText (ie. "What is the plastic piece on the end of a shoelace called?". If this field is too long, cut off the end.) * questionType (assume "multipleChoice", unless "openEnded") * questionSeconds (Seconds given to answer the question. If this field is out of range, bound it.) * questionImage (the URL of the image shown with the question - no field if no image - ie. "https://upload.wikimedia.org/wikipedia/commons/a/a8/Three_Different_Aglets.jpg") * answerChoices (array of 1-4 answer choices - each answer looks like this:) * answerText (ie. "Aglet". If this field is too long, cut off the end.) * correctAnswer (assume false, unless true) Example: { "fileType":"StudyLandSet", "version":1, "useAt":"https://studyland.asiteontheweb.com/", "setName":"Bob's Trivia Quiz", "setDescription":"Bob's favourite trivia questions", "questions":[ { "questionText":"What is the plastic piece on the end of a shoelace called?", "questionType":"multipleChoice", "questionSeconds":10, "questionImage":"https://upload.wikimedia.org/wikipedia/commons/a/a8/Three_Different_Aglets.jpg", "answerChoices":[ { "answerText":"a turtle strangler", "correctAnswer":false }, { "answerText":"an enviornment killer", "correctAnswer":false }, { "answerText":"an aglet", "correctAnswer":true }, { "answerText":"useful", "correctAnswer":false } ] }, { "questionText":"Who is the first president of the United States?", "questionType":"openEnded", "questionSeconds":30, "answerChoices":[ { "answerText":"George Washington", "correctAnswer":true }, { "answerText":"george washington", "correctAnswer":true }, { "answerText":"GeorgeWashington", "correctAnswer":true }, { "answerText":"georgewashington", "correctAnswer":true } ] } ] }