Required JSON Format
Your JSON file should be an array of question objects with the following structure:
[
{
"question": "Your question text here?",
"options": ["Option 1", "Option 2", "Option 3", "Option 4"],
"answer": 0
}
]
- question: The question text (string)
- options: Array of answer options (array of strings)
- answer: Index of correct option, starting from 0 (number)