Upload a JSON file containing multiple questions with their IDs to update them in bulk.
{
"questions": [
{
"question_id": 123,
"question": "$\\text{Which of the following is not required in photosynthesis?}$",
"options": [
{
"id": 1,
"text": "$\\text{chlorophyll}$"
},
{
"id": 2,
"text": "$\\text{Light}$"
},
{
"id": 3,
"text": "$\\text{CO}_2$"
},
{
"id": 4,
"text": "$\\text{O}_2$"
}
],
"solution": "Solution explanation with LaTeX support...",
"correct_answer": 4
},
{
"question_id": 124,
"question": "Another question...",
"options": [...],
"solution": "Solution...",
"correct_answer": 2
}
]
}