{
  "moduleId": "example-module",
  "moduleName": "Example Module - Getting Started",
  "description": "A simple example module showing the minimum required fields.",
  "category": "Examples",
  "difficulty": "beginner",
  "tags": ["example", "tutorial"],
  "questions": [
    {
      "id": 1,
      "question": "What is the capital of France?",
      "options": ["London", "Paris", "Berlin", "Madrid"],
      "correctAnswer": 1,
      "explanation": "Paris is the capital and most populous city of France."
    },
    {
      "id": 2,
      "question": "What is 2 + 2?",
      "options": ["3", "4", "5", "22"],
      "correctAnswer": 1,
      "explanation": "The sum of 2 and 2 is 4."
    },
    {
      "id": 3,
      "question": "Which planet is known as the Red Planet?",
      "options": ["Venus", "Jupiter", "Mars", "Saturn"],
      "correctAnswer": 2,
      "explanation": "Mars is often called the Red Planet due to its reddish appearance."
    }
  ],
  "flashcards": [
    {
      "id": 1,
      "front": "What is the capital of France?",
      "back": "Paris"
    },
    {
      "id": 2,
      "front": "What is 2 + 2?",
      "back": "4"
    },
    {
      "id": 3,
      "front": "Which planet is known as the Red Planet?",
      "back": "Mars"
    }
  ]
}
