{
  "_README": [
    "Trivia Fun — question import template.",
    "",
    "How to use:",
    "  1. Replace the example questions below with your own.",
    "  2. Save the file (any name ending in .json).",
    "  3. In the venue dashboard, scroll to 'Import Question Bank',",
    "     type a bank name, choose this file, click 'Import Questions'.",
    "",
    "Rules:",
    "  • Max 500 questions per import.",
    "  • Each question needs: 'question', 'choices' (2–6 items), 'correct' (0-indexed).",
    "  • 'correct' is the INDEX of the right answer in the choices array.",
    "    First choice = 0, second = 1, third = 2, fourth = 3.",
    "  • 'difficulty' is optional per-question. If omitted, uses the top-level",
    "    'difficulty' field below. Accepted values: 'easy', 'medium', 'hard'.",
    "",
    "Tip: the importer ignores any extra fields like this _README,",
    "so you can leave the comments in place when uploading.",
    ""
  ],
  "bankName": "Replace With Your Bank Name",
  "difficulty": "medium",
  "questions": [
    {
      "question": "Which planet is known as the Red Planet?",
      "choices": ["Venus", "Mars", "Jupiter", "Saturn"],
      "correct": 1,
      "difficulty": "easy"
    },
    {
      "question": "Which film won the Best Picture Oscar in 1994?",
      "choices": ["Pulp Fiction", "Forrest Gump", "The Shawshank Redemption", "Quiz Show"],
      "correct": 1
    },
    {
      "question": "What is the chemical symbol for gold?",
      "choices": ["Go", "Gd", "Au", "Ag"],
      "correct": 2,
      "difficulty": "medium"
    },
    {
      "question": "Which Indianapolis-area bar hosts the best trivia night?",
      "choices": ["CHAMPS Sports Bar", "The other place", "Anywhere else", "Your living room"],
      "correct": 0,
      "difficulty": "easy"
    }
  ]
}
