CREATOR GUIDE

Turn your questions into a study flow

Add a small bank manually, or prepare structured JSON when you have a long document. The same topic, answer timing, review, and statistics system is used for every published bank.

1

Choose the right question type

quiz

MCQ

One prompt, several options, and one best answer. Organize questions into topics before publishing.

account_tree

EMQ

One shared List B of options and multiple List A prompts. Not every option must be used.

For short community MCQ banks, use Create a question bank in the library. For a large MCQ or any EMQ bank, prepare JSON with the templates below and send it to the Medu administrator for validation and import.

2

MCQ JSON structure

Keep every question under its correct topic. Use stable IDs so saved progress still points to the same question after updates.

{
  "title": "My Paediatrics Bank",
  "institution": "My University",
  "type": "mcq",
  "topics": [{
    "id": "neonatology",
    "title": "Neonatology",
    "questions": [{
      "id": "neo-001",
      "prompt": "Question text",
      "options": [{"id":"A","text":"Option A"},{"id":"B","text":"Option B"}],
      "correctOption": "A",
      "explanation": "Optional explanation"
    }]
  }]
}
3

EMQ JSON structure

Each set owns its shared List B and all matching prompts in List A.

{
  "title": "My Clinical EMQs",
  "institution": "My University",
  "type": "emq",
  "sets": [{
    "id": "renal-001",
    "topic": "Renal",
    "title": "Renal syndromes",
    "options": [{"id":"A","text":"APSGN"},{"id":"B","text":"IgA nephropathy"}],
    "items": [{
      "id": "renal-001-1",
      "prompt": "Clinical scenario",
      "correctOption": "A",
      "explanation": "Optional explanation"
    }]
  }]
}
4

Before the bank goes live

  • check_circleEvery answer points to an option that actually exists.
  • check_circleQuestion wording and units match the source document.
  • check_circleAmbiguous or incomplete items are marked for source review.
  • check_circleTopics are specific enough to produce useful statistics.
  • check_circleYou have permission to publish the material.
Open question bank creator arrow_forward